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)
66public override Type? DeclaringType => _genericType.DeclaringType; 68public override Type? ReflectedType => _genericType.ReflectedType; 70public override string Name => _genericType.Name; 72public override Module Module => _genericType.Module; 104public override Assembly Assembly => _genericType.Assembly; 107public override string? Namespace => _genericType.Namespace; 150Type? typeBldrBase = _genericType.BaseType; 217protected override TypeAttributes GetAttributeFlagsImpl() { return _genericType.Attributes; } 236protected override bool IsValueTypeImpl() { return _genericType.IsValueType; } 251public override Type GetGenericTypeDefinition() { return _genericType; } 252public override Type? GetNullableUnderlyingType() => _genericType.GetNullableUnderlyingType() is not null ? _typeArguments[0] : null;