As a java developer, I am required to work on C# .
I am familiar with Eclipse IDE. In the MS Visual Studio 2010 Ultimate, how to do the similar ?
-
If I use F12 to see the difinition, then how can I go back to the original file ?
-
For an interface, how can I see all classes implementing this interface or method ? In the Eclipse, we just use CTRL+K.
1) If your mouse has a “Back” thumb button, you can typically use that to navigate backwards. Otherwise, bind a keyboard shortcut to “View.NavigateBackward” (Edit: The default key binding is Ctrl + -). Or click this button:
2) This isn’t possible without an extension of some kind, Visual Studio doesn’t support this out of the box. The best you could do is “Find All References” on the interface, and the results of that should include every class that implements that interface.