GetClrTypeFullNameForNonArrayTypes() private static method

private static GetClrTypeFullNameForNonArrayTypes ( Type type ) : string
type System.Type
return string
示例#1
0
 // Token: 0x06005080 RID: 20608 RVA: 0x0011B159 File Offset: 0x00119359
 internal static string GetClrTypeFullName(Type type)
 {
     if (type.IsArray)
     {
         return(FormatterServices.GetClrTypeFullNameForArray(type));
     }
     return(FormatterServices.GetClrTypeFullNameForNonArrayTypes(type));
 }