Tagged Questions
3
votes
4answers
657 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 = ...
1
vote
4answers
2k views
Is it never possible to get the FullName from a file using Silverlight OpenFileDialog?
I want to get the fullname from a file on Silverlight OpenFileDialog, when I try that, Silverlight throws me an error.
I saw there is an attribute on FullName saying it is [SECURITY CRITICAL], but I ...