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

silverlight - Applying a style to ItemContainerStyle in C# -

c# - NullReferenceException in MySqlClient.NativeDriver -

php - Updating recent updates - Problem in procedure - Any other approach? -