web-dev-qa-db-fra.com

Récupère le nom du type sans nom de l'espace en C #

J'ai le code suivant:

return "[Inserted new " + typeof(T).ToString() + "]";

Mais

 typeof(T).ToString()

renvoie le nom complet, y compris l'espace de noms

Est-il possible d'obtenir simplement le nom de la classe (sans aucun qualificateur d'espace de nom?)

251
leora
typeof(T).Name // class name, no namespace
typeof(T).FullName // namespace and class name
typeof(T).Namespace // namespace, no class name
462
Tim Robinson

Essayez ceci pour obtenir des paramètres de type pour les types génériques:

public static string CSharpName(this Type type)
{
    var sb = new StringBuilder();
    var name = type.Name;
    if (!type.IsGenericType) return name;
    sb.Append(name.Substring(0, name.IndexOf('`')));
    sb.Append("<");
    sb.Append(string.Join(", ", type.GetGenericArguments()
                                    .Select(t => t.CSharpName())));
    sb.Append(">");
    return sb.ToString();
}

Peut-être pas la meilleure solution (en raison de la récursion), mais cela fonctionne. Les sorties ressemblent à:

Dictionary<String, Object>
31
gregsdennis

faire usage de ( Propriétés du type )

 Name   Gets the name of the current member. (Inherited from MemberInfo.)
 Example : typeof(T).Name;
9
Pranay Rana

typeof (T) .Name;

6
Datoon

Après C # 6.0 (y compris), vous pouvez utiliser nameof expression:

using Stuff = Some.Cool.Functionality  
class C {  
    static int Method1 (string x, int y) {}  
    static int Method1 (string x, string y) {}  
    int Method2 (int z) {}  
    string f<T>() => nameof(T);  
}  

var c = new C()  

nameof(C) -> "C"  
nameof(C.Method1) -> "Method1"   
nameof(C.Method2) -> "Method2"  
nameof(c.Method1) -> "Method1"   
nameof(c.Method2) -> "Method2"  
nameof(z) -> "z" // inside of Method2 ok, inside Method1 is a compiler error  
nameof(Stuff) = "Stuff"  
nameof(T) -> "T" // works inside of method but not in attributes on the method  
nameof(f) -> “f”  
nameof(f<T>) -> syntax error  
nameof(f<>) -> syntax error  
nameof(Method2()) -> error “This expression does not have a name”  
3
Stas Boyarincev

meilleure façon d'utiliser:

obj.GetType().BaseType.Name
0
Hossein Ebrahimi