Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can resharper navigate to a method?

Tags:

I know how to navigate to a file or a class, but can I navigate to a class's method?

Oh and say I am viewing a different class's file

like image 936
mrblah Avatar asked Sep 03 '09 03:09

mrblah


People also ask

What can you do with ReSharper?

ReSharper helps instantly get to any code in a solution, no matter how large the solution is. It can also navigate you from any symbol to its related code such as implementations of a given interface, extension methods of a class, or usages of a field.

Can ReSharper navigate to decompiled code?

Navigate To Decompiled Sources Decompiled source code is shown in the editor as a reconstructed source file, in read-only mode. All relevant ReSharper's navigation and search commands are available in the decompiled view.

Why should I use ReSharper?

ReSharper is a renowned productivity tool that turns Microsoft Visual Studio into a much better IDE. Both individual . NET developers and teams rely on ReSharper to write and maintain code in a more manageable and enjoyable way, adopt the best coding practices, and deliver higher quality applications faster.


2 Answers

With respect to my correctly configured keybindings, all of the previous answers seem outdated/invalid to me.

I say:

  • Hit Alt + \ to list all file members.
  • Then find your method in the list and navigate to it.
like image 54
Jim G. Avatar answered Sep 18 '22 03:09

Jim G.


If you use "Resharper 2.x or IntelliJ IDEA" keyboard scheme:

Ctrl + Shift + Alt + N -> navigate to symbol

In Visual Studio Scheme:

Shift + Alt + T

For future reference and other options check https://www.jetbrains.com/resharper/features/navigation_search.html

like image 24
Ariel Popovsky Avatar answered Sep 20 '22 03:09

Ariel Popovsky