Shortcut Key(Visual Studio usage NOT coding)

  • Thread starter Thread starter Joseph Lee
  • Start date Start date
J

Joseph Lee

Hi,

I am using Visual Studio 2003. I would like to ask if anyone knows how to
find all the caller of a function.

Currently by highlighting the function name and "press shift+F12" or
"rightclick"+"go to defination" will show a single caller of that function.

I would like a list of all the caller of that function in order to ease
debugging/tracing.

Thanks

Joey
 
Joseph said:
Hi,

I am using Visual Studio 2003. I would like to ask if anyone knows how to
find all the caller of a function.

Currently by highlighting the function name and "press shift+F12" or
"rightclick"+"go to defination" will show a single caller of that function.

I would like a list of all the caller of that function in order to ease
debugging/tracing.

Look at available add-on packages, such as C# Refactory and Resharper.
 
Joseph Lee said:
Hi,

I am using Visual Studio 2003. I would like to ask if anyone knows how to
find all the caller of a function.

Currently by highlighting the function name and "press shift+F12" or
"rightclick"+"go to defination" will show a single caller of that function.

I would like a list of all the caller of that function in order to ease
debugging/tracing.

Thanks

Joey

Select the function in the Classes View, then press shift+alt+F12. All
senders of a method of that name (!) will be listed in the output window.
 
Back
Top