Interview Tips Interview Tips, Interview Questions and Answers

11Aug/100

What is break mode? What are the options to step through code?

What is break mode? What are the options to step through code?

Break mode lets you to observe code line to line in order to locate error.
VS.NET provides following option to step through code.
Step Into
Step Over
Step Out
Run To Cursor
Set Next Statement

.NET debug and trace classes - August 25, 2008 at 18:00 PM by Amit Satpute

What is Break mode?

When changes are made to the code in an application, the way to be able to view how those changes have changed the way of execution is Break Mode. In break mode, a snapshot of the running application is taken in which the status and values of all the variables is stored.