11 references to PT_ARRAY
Microsoft.CSharp (11)
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (1)
527callingType = SymbolLoader.GetPredefindType(PredefinedType.PT_ARRAY);
Microsoft\CSharp\RuntimeBinder\Semantics\Conversions.cs (1)
158if (SymbolLoader.HasIdentityOrImplicitReferenceConversion(SymbolLoader.GetPredefindType(PredefinedType.PT_ARRAY), typeSrc))
Microsoft\CSharp\RuntimeBinder\Semantics\ExplicitConversion.cs (1)
364if (_binder.canConvert(GetPredefindType(PredefinedType.PT_ARRAY), _typeSrc, CONVERTTYPE.NOUDC))
Microsoft\CSharp\RuntimeBinder\Semantics\Operators.cs (2)
987type1 = GetPredefindType(PredefinedType.PT_ARRAY); 995type2 = GetPredefindType(PredefinedType.PT_ARRAY);
Microsoft\CSharp\RuntimeBinder\Semantics\Symbols\SymbolLoader.cs (2)
262if (aggDest.IsPredefType(PredefinedType.PT_ARRAY) 263|| IsBaseInterface(GetPredefindType(PredefinedType.PT_ARRAY), aggDest))
Microsoft\CSharp\RuntimeBinder\Semantics\Types\ArrayType.cs (1)
66public override AggregateType GetAts() => SymbolLoader.GetPredefindType(PredefinedType.PT_ARRAY);
Microsoft\CSharp\RuntimeBinder\Semantics\Types\PredefinedTypes.cs (1)
147new PredefinedTypeInfo(PredefinedType.PT_ARRAY, typeof(Array), "System.Array"),
Microsoft\CSharp\RuntimeBinder\Semantics\Types\TypeManager.cs (1)
654return GetPredefAgg(PredefinedType.PT_ARRAY).getThisType();
Microsoft\CSharp\RuntimeBinder\SymbolTable.cs (1)
104type = SymbolLoader.GetPredefindType(PredefinedType.PT_ARRAY);