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

Popular posts from this blog

ASP.NET/SQL find the element ID and update database -

jquery - appear modal windows bottom -

c++ - Compiling static TagLib 1.6.3 libraries for Windows -