Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to navigate to pasted stack trace visual-studio

Tags:

I remember I used to

navigate to pasted stack trace by clicking

ctrl + E + T

is it a resharper utility?

What's the build in equivalent for visual studio 2012?

like image 930
Elad Benda Avatar asked Dec 13 '12 10:12

Elad Benda


People also ask

How do I view stack trace in Visual Studio?

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 I paste a stack trace?

Select a tab, make sure your cursor is not in the text editor, Paste your stack trace with Ctrl + V.

How do I read a stack trace file?

To read this stack trace, start at the top with the Exception's type - ArithmeticException and message The denominator must not be zero . This gives an idea of what went wrong, but to discover what code caused the Exception, skip down the stack trace looking for something in the package com.


2 Answers

The Stack Trace Explorer is a ReSharper feature. There is no equivalent built into Visual Studio. (If there was, why would they take all the time and expense to add the feature to ReSharper?)

like image 90
Joe White Avatar answered Sep 18 '22 15:09

Joe White


There is an extension Visual Studio 2017 called 'Stack Trace Explorer', you can get it here

like image 34
Nir Avatar answered Sep 17 '22 15:09

Nir