Visual Studio 2012: List All Methods in a Class

In VS 2010, is there a way to see all the methods in an attached window for the current class. Clicking on a method will allow me to jump to it.

This question is for development mode when editing a class in the IDE.

I have a Resharper, but I see no way to see all the methods in a good list as a function.

+6
c # visual-studio-2010 resharper
Dec 16 '12 at 19:36
source share
3 answers

View -> Class View or Ctrl + Shift + C. You see different classes in the upper panel and methods in the lower panel.

In addition, you have a list of methods at the top of your tab: enter image description here

+8
Dec 16 '12 at 19:41
source share

If you have a Resharper at your disposal, as you indicate, you can use the File Structure window. It looks like this:

enter image description here

To open it, click "Resharper", "Windows", "File Structure". The window is connected and updated as the current file changes.

enter image description here

+14
Dec 16
source share

You have VS 2012. This version has features in Solution Explorer.
If you expand the node class file, you will see all the classes.
And if you extend the node class, you will see all its members.

See http://blog.wpfwonderland.com/2012/08/04/visual-studio-2012-tidbits-01-class-members-in-solution-explorer for an explanation.

+1
Dec 17
source share



All Articles