VB.NET - Describe Break mode

Describe Break mode.

- Break mode is the state of an application when the execution gets paused and allows the developer to edit the value in the current state.

To attain a break mode we can carry out any of the following steps:

a. Selecting Break from the Run menu (Ctrl+Break) or pressing the pause button.
b. Reaching to break point.

Setting up the break points:

a. Go to the line where you need to mark the breakpoint.
b. Click with mouse on left corner margin of that line.
c. Another way is to press F9
VB.NET Watch window
VB.NET Watch window - Watch window is used to watch the values of application variables in Break mode......
VB.NET - What is trace? Describe its working
VB.NET - What is trace? Describe its working - Trace produces messages about program conditions even after application is compiled and released without interrupting application execution......
Exception handling in VB.NET
Exception handling in VB.NET - The Try block encapsulate set of code that is error prone and can throw exception......
Post your comment