How to get a schema similar to Eclipse in VS 2008 / C #?

I recently started using VS2008 for a new tool, and spent a lot of time on Eclipse / Java. The only thing I am missing is that I could have sworn in VS2005 the last time I worked with him - a class plan.

I am talking about the main scheme in Eclipse, where you can see class members, methods, etc. and click on them to go to them.

The only thing that sounds, maybe this (but not so) is the presentation of the class.

Any help?

+4
source share
4 answers

This is probably the closest addition you will find in it:

(The window on the left is what it adds to Visual Studio)

alt text http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=SourceCodeOutliner&DownloadId=3493

  • "You can dock the Outliner source code anywhere, for example, on the left side of the Visual Studio window next to the code editor window.

  • "Click the name of the method or variable in the Source Outliner, and the code associated with what you clicked appears at the top of the code editor window.

+4
source

JetBrains Reshaper.

+3
source

This is what I had to do:

Open Object Browser (View-> Object Browser). It will open as a tab.

Right-click the tab and select the "dockable" option. Then it will open like a window floating around.

I have 2 monitors, so in one of them I have a visual studio, and in the other there is an object browser window. If you click something in the Object Explorer, it will lead you to where it is defined in the visual studio editor.

Not the same as the Eclipse plan (I miss too), but it is the closest to it that I found without adding pluggins.

+3
source

Try this menu item:

View > Class View

Default keyboard shortcut

Control + Shift + C

+2
source

All Articles