1 write to _genericType
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (1)
52
_genericType
= type;
11 references to _genericType
System.Private.CoreLib (11)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (11)
66
public override Type? DeclaringType =>
_genericType
.DeclaringType;
68
public override Type? ReflectedType =>
_genericType
.ReflectedType;
70
public override string Name =>
_genericType
.Name;
72
public override Module Module =>
_genericType
.Module;
104
public override Assembly Assembly =>
_genericType
.Assembly;
107
public override string? Namespace =>
_genericType
.Namespace;
150
Type? typeBldrBase =
_genericType
.BaseType;
217
protected override TypeAttributes GetAttributeFlagsImpl() { return
_genericType
.Attributes; }
236
protected override bool IsValueTypeImpl() { return
_genericType
.IsValueType; }
251
public override Type GetGenericTypeDefinition() { return
_genericType
; }
252
public override Type? GetNullableUnderlyingType() =>
_genericType
.GetNullableUnderlyingType() is not null ? _typeArguments[0] : null;