I am new to .NET and VS development so I was wondering if there is a "class outline" window in VS as well (like eclipse). I have this very very long class and I don't want to scroll through it, so I'd like to have a view with the class summary of the open source code (like its members, methods, etc) so that I can juts click to the method or property that I want. Is there a view like this in VS 2008?
+1
A:
Use Class Diagram
or Class view
to see what you are looking for.
For Class View
: View -> Class View
For Class Diagram
: Project -> Add new item -> ClassDiagram
Good luck
Dr TJ
2010-10-15 22:55:41
I tried this already but didn't get what I wanted though. But thanks anyway
thomas1234
2010-10-15 23:23:51
A:
Not as eclipse.
But you have two combo at the top of the code window. The left combo permit you to select object and controls you're using while the right combo will show you a list of properties/methods/events that your class has in alphabetical order.
Like in the following screenshot (taken from VS2010 but is almost the same)
You can distinguish properties from methods by its icon.
Hope it helps
Lorenzo
2010-10-15 22:56:53