14 references to BaseClass
Microsoft.CSharp (14)
Microsoft\CSharp\RuntimeBinder\Semantics\Conversion.cs (1)
700for (AggregateType atsCur = rgats[iats]; atsCur != null && atsCur.OwningAggregate.HasConversion(); atsCur = atsCur.BaseClass)
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (1)
583atsCur = atsCur.BaseClass;
Microsoft\CSharp\RuntimeBinder\Semantics\MemberLookup.cs (1)
367for (typeCur = typeStart; typeCur != typeEnd && typeCur != null; typeCur = typeCur.BaseClass)
Microsoft\CSharp\RuntimeBinder\Semantics\MethodTypeInferrer.cs (4)
1155pSourceBase = (pSource as AggregateType).BaseClass; 1166pSourceBase = pSourceBase.BaseClass; 1467AggregateType pDestBase = ((AggregateType)pDest).BaseClass; 1477pDestBase = pDestBase.BaseClass;
Microsoft\CSharp\RuntimeBinder\Semantics\Operators.cs (1)
2512for (AggregateType atsCur = type; atsCur != null && atsCur != atsStop; atsCur = atsCur.BaseClass)
Microsoft\CSharp\RuntimeBinder\Semantics\Symbols\SymbolLoader.cs (4)
37atsDer = atsDer.BaseClass; 79AggregateType atsCur = atsDer.BaseClass; 87atsCur = atsCur.BaseClass; 308atsDer = atsDer.BaseClass;
Microsoft\CSharp\RuntimeBinder\Semantics\Types\AggregateType.cs (1)
142get => BaseClass;
Microsoft\CSharp\RuntimeBinder\Semantics\Types\TypeManager.cs (1)
622AggregateType baseType = aggSrc.BaseClass;