Tony Coculuzzi
Tony Coculuzzi

Reputation: 55

Is there an equivalent of MonoDevelop's Document Outline in Visual Studio 2012?

MonoDevelop has a Document Outline (Class Outline?) window that displays all variables, methods, and regions:

Is there an equivalent to this in Visual Studio 2012?

Upvotes: 3

Views: 1433

Answers (4)

Kux
Kux

Reputation: 1489

I had the same question and my prefered solution is:

Jetbrains ReSharper (8.0) has a File Structure window which shows the structure of the current file as tree (types/members) and regions are also supported.

Upvotes: 2

Steve B
Steve B

Reputation: 37710

Code Maid is a free Visual Studio extension that adds a digging window tool.

This will answer to your needs, I believe.

enter image description here

This tool also allow you to reorder code elements with drag & drop directly within this window.

Upvotes: 2

Jamie Dixon
Jamie Dixon

Reputation: 54011

There's Class View which can be opened from the View menu (CTRL + SHIFT + C)

It's not exactly the same as the image you've provided but it's very similar.

Upvotes: 1

dougajmcdonald
dougajmcdonald

Reputation: 20057

The solution explorer gives you most of this by default if you expand a class by clicking the little sideways arrow.

The icons and colours next to methods and variables indicate things like access level, return types etc

Upvotes: 1

Related Questions