Exemplo n.º 1
0
 public static string GetDevelopName(this Type type)
 {
     return(TypeNameReverser.GetDevelopName(type));
 }
Exemplo n.º 2
0
 public static string GetRuntimeName(this Type type)
 {
     return(TypeNameReverser.GetRuntimeName(type));
 }
Exemplo n.º 3
0
 /// <summary>
 /// 获取运行时类名,无标识
 /// System.Collections.Generic.List<>
 /// </summary>
 /// <param name="type"></param>
 /// <returns></returns>
 public static string GetDevelopNameWithoutFlag(this Type type)
 {
     return(TypeNameReverser.ReverseFullName(type, true));
 }