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?)
|
i have the following code: return "[Inserted new " + typeof(T).ToString() + "]"; but
return the full name including namespace is there anyway to get just the class name (without any namespace qualifiers?)
| |||
|
feedback
|
| |||
|
feedback
|
|
make use of (Type Properties)
| ||||
|
feedback
|
string1 + anything.ToString() + string2is redundant. The compiler inserts the call toToStringautomatically if you dostring1 + anything + string2. – Tim Robinson Aug 3 '10 at 12:21Typeinstance (as returned bytypeof(..)) I'm pretty sure you'd figure out this yourself... – Peter Lillevold Aug 3 '10 at 13:20