In Visual Studio, when you right-click a method call, you go to the implementation of that method inside a class except if you access this method through an interface: in th
Visual Studio 2015 Update 1 (released December 2015) has now added a right click 'Go To Implementation' feature as standard.
No. This is not possible, despite the elaborate in memory code structure maintained by VS, code navigation is rather...stingy.
It seems the only alternative is a global search with "Find All Reference" followed by a manual search of the resulting list to exclude typed value declarations, conversions, etc. or the use of other tools within VS other than the code editor. All rather complex and disappointing.
With VS2013 one can place cursor over the method, and use Navigate To... (CTRL+,), and it will display all locations where the name is declared. Doesn't work well if different interfaces uses the same method names.
With VS2015 Update 1 there is now a new shortcut called "Go To Implementation".