Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a method/function list feature in Resharper?

With R# is there a way to view/nav the set of methods in the current class?

I know you can use VS' native top-right drop-down but I'd like a shortcut.

This seems like an obvious feature for R# as it's something I miss most in VS compared to other programmer's editors.

Thanks, Matt

(ps. sorry if this post appears twice but first attempt didn't seem to post successfully)

like image 671
Matt Cotton Avatar asked May 10 '10 15:05

Matt Cotton


1 Answers

Two ways I use to navigate methods using R# are:

  • ReSharper->Go To->File member... (Alt + \, for me)
  • ReSharper->Windows->File Structure Window

The former invokes a popup with autocomplete where you can type the name of the method, or you can scroll through the list. The latter option is a window that provides an overview of the members in your class in the order they come in the file.

like image 122
bentsai Avatar answered Sep 30 '22 14:09

bentsai