Tagged Questions
3
votes
4answers
688 views
Correct way to obtain base name of a generic type in .NET is through Substring?
If I have this:
Type t = typeof(Dictionary<String, String>);
How do I get "System.Collections.Generic.Dictionary" as a string? Is the best/only way to do this:
String n = ...