public static string Alias(this Type type)
 {
     return(TypeAliases.ContainsKey(type) ?
            TypeAliases[type] : string.Empty);
 }
 public static string AliasOrName(this Type type)
 {
     return(TypeAliases.ContainsKey(type) ?
            TypeAliases[type] : type.Name);
 }