Define Debug and Trace Class - DOT.NET

Define Debug and Trace Class.

Debug Class (System.Diagnostics)
It provides a set of methods and properties that help debug your code. This class cannot be inherited.

Trace Class (System.Diagnostics)
It provides a set of methods and properties that help you trace the execution of your code. This class cannot be inherited. For a list of all members of this type, see Trace Members
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.....
What is an Event? - DOT.NET
When an action is performed, this action is noticed by the computer application based on which the output is displayed.....
Define Delegate - DOT.NET
Delegates are kind of similar to the function pointers. But they are secure and type-safe...
Post your comment