Oftentimes when browsing code, I\'ll come across something like this:
public class Fruity
{
private IOrange _Orange;
public Fruity()
{
_Oran
If you double-click or highlight Peel
and press CTRL+,
you'll get the "navigate to symbol" window which will list the actual implementation, usually as the second item. It's about the fastest way of finding it without 3rd party tools. And unlike "find all references", it only shows the method definitions and not wherever it's called.