What are the debugging windows available? - DOT.NET

What are the debugging windows available?

The windows which are available while debugging are as follows:

Breakpoints:
- It displays a list of all the breakpoints and where they are.
- It shows condition when that breakpoint will be hit if a condition exists and the Hit Count shows the number of times that breakpoint has been hit.

Output:
- It displays the status messages for various features in the IDE.
- It shows the output form a list of objects throughout debug mode of the application.

Immediate:
- This window allows the programmer to write code and verify values through programming while debugging the application.
- It helps in checking the values of objects/controls etc, and the conditions throughout the application in debug mode.
What is a Breakpoint? - DOT.NET
Using Breakpoints you can break or pause the execution of an application at a certain point...
Define Debug and Trace Class - DOT.NET
Trace Class (System.Diagnostics) It provides a set of methods and properties that help you trace the execution of your code....
Explain how to configure Trace switches in the application's .config file - DOT.NET
Trace switches are used to enable, disable and filter the tracing output. They are objects can be configured through the .config file.....
Post your comment