0

I want to show the full execution of my c# program/project automatically and slowly in visual studio C#.

I know we can do it using debugging point, but it's a manual process, but what to do to make it automatic and want to know that how and where the execution is going.

Ankit Modi
  • 25
  • 1
  • 9

2 Answers2

0

You probably want something like IntelliTrace, however it's only for Enterprise and above editions of Visual Studio.

Lloyd
  • 29,197
  • 4
  • 84
  • 98
0

I hope you know " Navigating through Code with the Debugger"

https://msdn.microsoft.com/en-us/library/y740d9d3.aspx

Also i recommended you tool use some third party add on in Visual studio

IntelliTrace is good one

i recommended you to follow

https://visualstudiomagazine.com/articles/2011/11/01/debugging-tools-for-the-net-developer.aspx

Ranjith Murthy
  • 112
  • 3
  • 11