1

I'm a Java developer starting with .Net development using VS.Net 2008. I would love to get the Eclipse style of navigating methods etc by pressing the Ctrl key, hover over a method then click it to got to that method's declaration. Does such a plugin exist for VS.Net 2008?

thanks

2 Answers2

0

To summarize In Visual Studio 2008, how can I make control+click do a “Go To Definition”?, you could either use AutoHotKey with the following script,

SetTitleMatchMode RegEx
#IfWinActive, .* - Microsoft Visual Studio
^LButton::Send {click}{f12}

or use ReSharper.

Community
  • 1
  • 1
Eugene Yokota
  • 94,654
  • 45
  • 215
  • 319
0

Two ways to go to a method's declaration:

Press F12 when the cursor is positioned in a call to the method.

Right click a call to the method and select 'Go To Definition' on the popup menu.

Jay Riggs
  • 53,046
  • 9
  • 139
  • 151