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