"Go to definition" equivalent shortcut to implement the interface?

Possible duplicate:
How do you quickly find the implementation (s) of the interface method?
Go to specific type definition

Interface coding is excellent until you want to quickly get to the implementation of the function.

On good days, F12 (Go to Definition) will lead you right there, but, of course, now it will just lead you to define the interface, not the implementation.

I appreciate that there can be several implementations, but is there a faster way than manually searching for a file, or Ctrl-Shift-F to search for all links, although this includes all the calls. "Find all links" gives the same result.

Just wondering if anyone has a handy method / macro?

+3
source share
1 answer

Use ReSharper . There is Ctrl + F12. You will be surprised how strong he is ...

By the way, it is called "Go to implementation" as opposed to "Go to declaration."

+10
source

All Articles