0

Say I have a function named SampleMethod. I have called this method multiple times in my program. Is there any way I can navigate to each of the calling points in the program ? Quite frankly, is there way to reverse the usage of Go to definiton. I am using Visual Studio 2008.

Divakar
  • 652
  • 2
  • 7
  • 18

2 Answers2

3

Right click on function and then select Find All References option. enter image description here

You can also use Shift + F12 keyboard shortcut to find all references of the function in VS 2008.

Sachin
  • 40,216
  • 7
  • 90
  • 102
3

Right click on the function and choose Find All References. This is in Visual Studio 2010 and 2012.

Milen
  • 8,697
  • 7
  • 43
  • 57