What is break mode? What are the options to step through code? - DOT.NET

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

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.
Debug Vs Trace - DOT.NET
Debug statement can only be used in debug mode while trace statement can be used both in debug and released mode.....
Define trace class - DOT.NET
You can use trace messages to your project to monitor events in the released version of the application...
Define Listeners collection of Trace and Debug objects - DOT.NET
The Trace and Debug objects contain a Listeners collection. These Listeners collection collect output from the trace statements....
Post your comment