14 references to BaseClass
Microsoft.CSharp (14)
Microsoft\CSharp\RuntimeBinder\Semantics\Conversion.cs (1)
727for (AggregateType atsCur = rgats[iats]; atsCur != null && atsCur.OwningAggregate.HasConversion(); atsCur = atsCur.BaseClass)
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (1)
595atsCur = atsCur.BaseClass;
Microsoft\CSharp\RuntimeBinder\Semantics\MemberLookup.cs (1)
368for (typeCur = typeStart; typeCur != typeEnd && typeCur != null; typeCur = typeCur.BaseClass)
Microsoft\CSharp\RuntimeBinder\Semantics\MethodTypeInferrer.cs (4)
1156pSourceBase = (pSource as AggregateType).BaseClass; 1167pSourceBase = pSourceBase.BaseClass; 1468AggregateType pDestBase = ((AggregateType)pDest).BaseClass; 1478pDestBase = pDestBase.BaseClass;
Microsoft\CSharp\RuntimeBinder\Semantics\Operators.cs (1)
2574for (AggregateType atsCur = type; atsCur != null && atsCur != atsStop; atsCur = atsCur.BaseClass)
Microsoft\CSharp\RuntimeBinder\Semantics\Symbols\SymbolLoader.cs (4)
40atsDer = atsDer.BaseClass; 84AggregateType atsCur = atsDer.BaseClass; 92atsCur = atsCur.BaseClass; 318atsDer = atsDer.BaseClass;
Microsoft\CSharp\RuntimeBinder\Semantics\Types\AggregateType.cs (1)
142get => BaseClass;
Microsoft\CSharp\RuntimeBinder\Semantics\Types\TypeManager.cs (1)
648AggregateType baseType = aggSrc.BaseClass;