Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find the Call Stack in Visual Studio 2017

Embarrassingly I cannot find the Call Stack window in VS 2017. I've tried using the path of (menu) Debug> Windows> Call Stack that was used in Visual Studio 2015.

What am I missing?

like image 451
Andrei Avatar asked Apr 29 '18 11:04

Andrei


People also ask

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.

What is current call stack?

In computer science, a call stack is a stack data structure that stores information about the active subroutines of a computer program. This kind of stack is also known as an execution stack, program stack, control stack, run-time stack, or machine stack, and is often shortened to just "the stack".


1 Answers

The menu option only appears while debugging, it should be where you're looking for it:

enter image description here

enter image description here

Compared to while not debugging:

enter image description here

like image 77
jessehouwing Avatar answered Sep 28 '22 06:09

jessehouwing