Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Click through to implementation

With Resharper and Visual Studio, I use Ctrl+Click to go to the method, but for interface implementations, I use the context option of Go To Implementation.

Is there a way to achieve this with the Ctrl+Click behaviour - perhaps implement a variation of it, such as Shift+Ctrl+Click?

like image 392
Savage Avatar asked Sep 25 '12 15:09

Savage


People also ask

What is go to implementation in Visual Studio?

Go To ImplementationTo get to an implementation of that interface, use Ctrl+F12 instead. If Visual Studio only knows of one implementation to that interface, it will take you there straight away. If there are multiple implementations, Visual Studio will present you with a list.

How do I get to implementation method in IntelliJ?

Go to implementation To navigate to the super method, press Ctrl+U . To navigate to the implementation, press Ctrl+Alt+B .

How do I get to the implementation class in Eclipse?

If you use the f3 key or ctrl+click over a class/method in eclipse, it opens the corresponding class/method.

How do you use implementation method in VS code?

Go to Implementation# Languages can also support jumping to the implementation of a symbol by pressing Ctrl+F12. For an interface, this shows all the implementors of that interface and for abstract methods, this shows all concrete implementations of that method.


1 Answers

If you have ReSharper 8.1 installed, use Ctrl+Alt+Click for "Go To Implementation" action

like image 166
Alexander Kurakin Avatar answered Nov 16 '22 04:11

Alexander Kurakin