1 instantiation of RoByRefType
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Modules\RoModule.Unifier.cs (1)
47private static readonly Func<RoType, RoByRefType> s_byrefTypeFactory = (e) => new RoByRefType(e);
5 references to RoByRefType
System.Reflection.MetadataLoadContext (5)
System\Reflection\TypeLoading\General\TypeFactories.cs (1)
13public static RoByRefType GetUniqueByRefType(this RoType elementType) => elementType.GetRoModule().GetUniqueByRefType(elementType);
System\Reflection\TypeLoading\Modules\RoModule.Unifier.cs (4)
40internal RoByRefType GetUniqueByRefType(RoType elementType) 47private static readonly Func<RoType, RoByRefType> s_byrefTypeFactory = (e) => new RoByRefType(e); 48private readonly ConcurrentDictionary<RoType, RoByRefType> _byRefDict = new ConcurrentDictionary<RoType, RoByRefType>();