i have the following code:

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

but

 typeof(T).ToString()

return the full name including namespace

is there anyway to get just the class name (without any namespace qualifiers?)

link|improve this question

Incidentally, writing string1 + anything.ToString() + string2 is redundant. The compiler inserts the call to ToString automatically if you do string1 + anything + string2. – Tim Robinson Aug 3 '10 at 12:21
not to sound harsh but, had you inspected what properties are available on the Type instance (as returned by typeof(..)) I'm pretty sure you'd figure out this yourself... – Peter Lillevold Aug 3 '10 at 13:20
feedback

3 Answers

up vote 34 down vote accepted
typeof(T).Name // class name, no namespace
typeof(T).FullName // namespace and class name
typeof(T).Namespace // namespace, no class name
link|improve this answer
feedback

make use of (Type Properties)

 Name   Gets the name of the current member. (Inherited from MemberInfo.)
 Example : typeof(T).Name;
link|improve this answer
feedback

typeof(T).Name;

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.