What Are Different Types of Debbugers

Answers were Sorted based on User's Feedback



What Are Different Types of Debbugers..

Answer / vaibhav durhaya

There are two types of Debugger--

1. CorDBG – command-line debugger. To use CorDbg, you
must compile the original C# file using the /debug switch.
2. DbgCLR – graphic debugger. Visual Studio .NET uses
the DbgCLR.

Is This Answer Correct ?    33 Yes 2 No

What Are Different Types of Debbugers..

Answer / sabyasachi

Visual Debugger allows you to examine code while it is
running and includes features that help you debug
applications, including the following:

Breakpoints: Breakpoints are places in the code where
the debugger will stop the application, allow you to view
the current data state of the application, and then step
through each line of code. For information, see Debugging
Basics: Breakpoints.

Stepping: Once you have stopped at a breakpoint, you
can run the code line by line (known as stepping through the
code). Visual Debugger includes a number of features to help
you step through your code, such as iterators that allow you
to specify how many times to step through a loop before
stopping again. For more information, see Code Stepping
Overview.

Data Viewing: Visual Debugger gives you many different
options for viewing and tracking data while the application
is running. The debugger allows you to modify the data while
the application is stopped in break mode and then continue
to run the application with the modified data. For more
information, see Viewing Data in the Debugger.

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More ASP.NET Interview Questions

what are the ihttphandler and ihttphandlerfactory interfaces ?

0 Answers  


What is cache in asp net?

0 Answers  


What is voluum?

0 Answers  


To which side ( server ? client) does the user input data validation occur? Explain the reasons for it?

1 Answers   Siebel,


How many classes can a single .NET DLL contain?

14 Answers   Siebel Systems,






What is application in asp net?

0 Answers  


a web application needs to be created to accept the product name and quantity of a toy from a customer. After the customer has entered the product name the application needs to display the discounted price of the product to the customer (company is offering 35% discount on all products). The application should allow the customer to select the product name from a list box. and also while i'm data binding to a label with custom data binding with some declarations : "The Discounted Price is "+((System.Convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)) - ((System.convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)*0.35)). Where i need to give this declaration in asp.net 2.0.

0 Answers   Netsweeper,


How you will improve web application performance?

0 Answers   Wipro,


What are the disadvantages of viewstate/what are the benefits

3 Answers  


Where would you use an iHTTPModule, and what are the limitations of any approach you might take in implementing one?

1 Answers  


How do you declare delegates and are delegates and events one and the same and explain how do you declare delegates and invoke them ?

1 Answers   MMTS,


how to retrieve data using web services in asp.net pls give me the code and explain me briefly

3 Answers  


Categories