1 write to MethodTypes
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\Semantics\SubstitutionContext.cs (1)
19MethodTypes = typeArgsMeth?.Items ?? Array.Empty<CType>();
7 references to MethodTypes
Microsoft.CSharp (7)
Microsoft\CSharp\RuntimeBinder\Semantics\SubstitutionContext.cs (1)
38public bool IsNop => ClassTypes.Length == 0 & MethodTypes.Length == 0;
Microsoft\CSharp\RuntimeBinder\Semantics\Types\TypeManager.cs (6)
299if (index < pctx.MethodTypes.Length) 301Debug.Assert(pctx.MethodTypes != null); 302return pctx.MethodTypes[index]; 439Debug.Assert(tvs.GetIndexInTotalParameters() < pctx.MethodTypes.Length); 440if (index < pctx.MethodTypes.Length) 442return typeDst == pctx.MethodTypes[index];