6 references to SubstType
Microsoft.CSharp (6)
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (1)
408pReturnType = TypeManager.SubstType(mwi.Meth().RetType, mwi.GetType(), mwi.TypeArgs);
Microsoft\CSharp\RuntimeBinder\Semantics\MemberLookup.cs (1)
486TypeManager.SubstType(pSrcType, pAggType, pAggType.TypeArgsAll).IsDelegateType;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\MethodInfo.cs (1)
34CType genericReturn = TypeManager.SubstType(methSym.RetType, aggType, methSym.typeVars);
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (2)
103CType typeRet = TypeManager.SubstType(mwi.Meth().RetType, mwi.GetType(), mwi.TypeArgs); 719CType pMethodReturnType = TypeManager.SubstType(method.Meth().RetType,
Microsoft\CSharp\RuntimeBinder\Semantics\Types\TypeManager.cs (1)
555public static CType SubstType(CType typeSrc, AggregateType atsCls) => SubstType(typeSrc, atsCls, null);