views:

87

answers:

2

I'm looking for a code navigation addin for Visual Studio 2008:

  1. Press a keyboard shortcut to invoke a popup window that shows a list of methods of the current .cs file.
  2. In the popup window the input focus auto sets to an input box where you can filter the method list as you type.
  3. Press to jump to the selected method.

That's all. When using Delphi there is a add-in called experts which does this and it's very productive.

A: 

ReSharper has the functionality (Alt+\)

Kindness,

Dan

Daniel Elliott
Thank you Dan, I heard good things about ReSharper, however, it small, lightweight addin will be better....
Edwin
A: 

See CodeHelper
http://www.bluemusa.com/codehelper/codehelper.htm

it has a method Finder (it shows a simple list with each method defined in .cs file, and when you dobleclick on it, it takes you directly to that method).

rafaelsr