VS 2008 (C #) - view in class plan?

I am new to .NET and VS development, so I was wondering if there is a "class outline" window in the VS window (for example, eclipse). I have this very long class and I don’t want to scroll through it, so I would like to have a presentation with a summary of the open source class (for example, its members, methods, etc.), so that I can draw click on a method or property, which i want. Is there such a vision in VS 2008?

+4
source share
2 answers

Not like an eclipse.

But you have two combos at the top of the code window. The left combination allows you to select the object and controls that you use, while the right combination shows you a list of properties / methods / events that your class has in alphabetical order.

As in the following screenshot (taken from VS2010, but almost the same)

alt text

You can distinguish properties from methods by icon.

Hope this helps

0
source

Use Class Diagram or Class view to find out what you are looking for.
For Class view : View β†’ View class
For Class Diagram : Project β†’ Add New Item β†’ ClassDiagram
Good luck.

+1
source

All Articles