serhio
serhio

Reputation: 28586

View Call Hierarchy in Visual Studio

Is there anybody who knows, what is for, and how it works, the "Call Hierarchy" window in Visual Studio (2010)?

enter image description here

@SLaks :
enter image description here

Upvotes: 1

Views: 3048

Answers (1)

SLaks
SLaks

Reputation: 887453

I don't know why it isn't in your context menu, but you can also press Ctrl + K, T when the cursor is on a method name to activate it.
EDIT: It's not available in VB.Net.

It will show you every method that calls your function, and every method that your function calls.

http://msdn.microsoft.com/en-us/library/dd409859.aspx Screenshot
(source: microsoft.com)

Upvotes: 4

Related Questions