1 instantiation of TypeBuilderInstantiation
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (1)
45return new TypeBuilderInstantiation(type, typeArguments);
17 references to TypeBuilderInstantiation
System.Private.CoreLib (17)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\ConstructorOnTypeBuilderInstantiation.cs (3)
11internal static ConstructorInfo GetConstructor(ConstructorInfo constructor, TypeBuilderInstantiation type) 19private TypeBuilderInstantiation _type; 23internal ConstructorOnTypeBuilderInstantiation(ConstructorInfo constructor, TypeBuilderInstantiation type)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\FieldOnTypeBuilderInstantiation.cs (3)
11internal static FieldInfo GetField(FieldInfo Field, TypeBuilderInstantiation type) 31private TypeBuilderInstantiation _type; 35internal FieldOnTypeBuilderInstantiation(FieldInfo field, TypeBuilderInstantiation type)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\MethodOnTypeBuilderInstantiation.cs (1)
12internal static MethodInfo GetMethod(MethodInfo method, TypeBuilderInstantiation type)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilder.cs (7)
323return TypeBuilderInstantiation.MakeGenericType(this, typeArguments); 336if (type is not TypeBuilder && type is not TypeBuilderInstantiation) 371if (type is not TypeBuilderInstantiation typeBuilderInstantiation) 383if (type is not TypeBuilder && type is not TypeBuilderInstantiation) 404if (type is not TypeBuilderInstantiation typeBuilderInstantiation) 416if (type is not TypeBuilder and not TypeBuilderInstantiation) 437if (type is not TypeBuilderInstantiation typeBuilderInstantiation)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (3)
123if (t is TypeBuilderInstantiation tbi) 155TypeBuilderInstantiation? typeBldrBaseAs = typeBldrBase as TypeBuilderInstantiation;