Base:
property
BaseType
System.Type.BaseType
11 references to BaseType
System.Private.CoreLib (11)
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\Marshal.cs (2)
1109if (rt.BaseType != typeof(MulticastDelegate) && rt != typeof(MulticastDelegate)) 1130if (rt.BaseType != typeof(MulticastDelegate) && rt != typeof(MulticastDelegate))
src\System\Reflection\Associates.cs (1)
133reflectedType = (RuntimeType)reflectedType.BaseType!;
src\System\Reflection\RuntimeCustomAttributeData.cs (5)
1132type = (type.BaseType as RuntimeType)!; 1139type = (type.BaseType as RuntimeType)!; 1277type = (type.BaseType as RuntimeType)!; 1716for (RuntimeType? type = attributeType; type != null; type = (RuntimeType?)type.BaseType) 1968Debug.Assert(pca.BaseType == typeof(Attribute), "Pseudo CA Error - Incorrect base type");
src\System\Reflection\RuntimeMethodInfo.CoreCLR.cs (2)
111RuntimeType? parent = (RuntimeType?)m_declaringType.BaseType; 344declaringType = (RuntimeType)declaringType.BaseType!;
src\System\RuntimeType.CoreCLR.cs (1)
821interfaces = ReflectedType.BaseType!.GetInterfaces();