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