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.
|