visual studio 2010 - How to find classes in VS -
how find exception classes represented example in system.io namespace. possible in vs?
in object browser, select 1 of .net framework versions (not components or solution).
you can expand class , @ derived types. (note take time expand)
alternatively, look @ msdn.
edit: paste following linqpad:
var mscorlib = typeof(string).assembly; var basetype = typeof(exception); mscorlib.gettypes().where(t => (t.namespace ?? "").startswith("system.io") && basetype.isassignablefrom(t)).dump();
Comments
Post a Comment