Reputation: 55
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
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
Reputation: 37710
Code Maid is a free Visual Studio extension that adds a digging
window tool.
This will answer to your needs, I believe.
This tool also allow you to reorder code elements with drag & drop directly within this window.
Upvotes: 2
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
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