Base:
method
GetGenericTypeDefinition
System.Type.GetGenericTypeDefinition()
8 references to GetGenericTypeDefinition
mscorlib (8)
system\collections\generic\comparer.cs (1)
64
if (t.IsGenericType && t.
GetGenericTypeDefinition
() == typeof(Nullable<>)) {
system\collections\generic\equalitycomparer.cs (1)
53
if (t.IsGenericType && t.
GetGenericTypeDefinition
() == typeof(Nullable<>)) {
system\delegate.cs (1)
257
Type targetType = declaringType.
GetGenericTypeDefinition
();
system\reflection\customattribute.cs (2)
1338
type = type.
GetGenericTypeDefinition
() as RuntimeType;
2211
type = (RuntimeType)type.
GetGenericTypeDefinition
();
system\rttype.cs (2)
2057
RuntimeType declaringDefinition = (RuntimeType)declaredType.
GetGenericTypeDefinition
();
2066
baseDefinition = (RuntimeType)baseDefinition.
GetGenericTypeDefinition
();
system\unityserializationholder.cs (1)
122
type = (RuntimeType)type.
GetGenericTypeDefinition
();