web-dev-qa-db-ja.com

完全な名前空間なしで型名を取得

私は次のコードを持っています:

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

しかし

 typeof(T).ToString()

名前空間を含むフルネームを返します

とにかくクラス名を取得するだけですか(名前空間修飾子なしで?)

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

これを試して、ジェネリック型の型パラメーターを取得します。

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();
}

たぶん(再帰のせいで)最善の解決策ではないかもしれませんが、うまくいきます。出力は次のようになります。

Dictionary<String, Object>
33
gregsdennis

Type Properties )を利用する

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

typeof(T).Name;

5
Datoon

C#6.0(含む)の後、 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”  

注意! nameofは、基礎となるオブジェクトの実行時の型を取得せず、単なるコンパイル時の引数です。メソッドがIEnumerableを受け入れる場合、nameofは単に「IEnumerable」を返しますが、実際のオブジェクトは「List」になります。

4
Stas Boyarincev

使用する最良の方法:

obj.GetType().BaseType.Name
0