我有以下代码:
return "[Inserted new " + typeof(T).ToString() + "]";
但是
typeof(T).ToString()
返回包括命名空间
在内的全名无论如何只是获取类名(没有任何名称空间限定符?)
答案 0 :(得分:476)
typeof(T).Name // class name, no namespace
typeof(T).FullName // namespace and class name
typeof(T).Namespace // namespace, no class name
答案 1 :(得分:33)
尝试此操作以获取泛型类型的类型参数:
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>
答案 2 :(得分:9)
使用(Type Properties)
Name Gets the name of the current member. (Inherited from MemberInfo.)
Example : typeof(T).Name;
答案 3 :(得分:5)
的typeof(T),请将.Name;
答案 4 :(得分:4)
在C#6.0(包括)之后,您可以使用nameof表达式:
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只返回&#34; IEnumerable&#34;,而实际的对象可能是&#34; List&#34;。
答案 5 :(得分:-1)
最佳使用方式:
obj.GetType().BaseType.Name