Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I view the Call Hierarchy window?

According to this, I should be able to highlight a procedure name, right muse click and select "Call Hierarchy" menu to open the Call Hierarchy window.

Yet, there is no context sensitive menu available when I highlight a routine.

What gives?

like image 305
Chad Avatar asked Jul 05 '10 04:07

Chad


People also ask

How can I see the call hierarchy code in Visual Studio?

A call hierarchy view shows all calls from or to a function and allows you to drill into callers of callers and calls of calls. The image below shows that function foo is being called by bar and bang, then bar is being called by bang and fib.

How do I open a call stack window?

To open the Call Stack window in Visual Studio, from the Debug menu, choose Windows>Call Stack. To set the local context to a particular row in the stack trace display, select and hold (or double click) the first column of the row.

How do you read a call stack?

Call stack is set of lines, which is usually read from top to bottom - meaning moving from current locations to callers. The bottom line was executed first. The top line is executed last and it is the current routine.


1 Answers

If you have Resharper installed, it could be hiding it as well.

Untick the checkbox in ReSharper | Options | Environment | Keyboard & Menus | Hide overridden Visual Studio menu items.

like image 63
Daryl Avatar answered Oct 26 '22 05:10

Daryl