2 instantiations of RoPointerType
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Modules\RoModule.Unifier.cs (2)
56new RoPointerType(elementType) : 57_pointerDict.GetOrAdd(elementType, (e) => new RoPointerType(e));
4 references to RoPointerType
System.Reflection.MetadataLoadContext (4)
System\Reflection\TypeLoading\General\TypeFactories.cs (1)
14public static RoPointerType GetUniquePointerType(this RoType elementType) => elementType.GetRoModule().GetUniquePointerType(elementType);
System\Reflection\TypeLoading\Modules\RoModule.Unifier.cs (3)
53internal RoPointerType GetUniquePointerType(RoType elementType) 59private readonly ConcurrentDictionary<RoType, RoPointerType> _pointerDict = new ConcurrentDictionary<RoType, RoPointerType>();