What Are Different Types of Debbugers
Answers were Sorted based on User's Feedback
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 |
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 |
How can we read a columnised text data in ASP.Net C#? Columnised means my data is stored in a text file and I have numeric data or string data in this file. For ex. If I am searching for the data of gender and I know that gender data is stored at column 32 in text file. How can I get this data in ASP.Net page. Thanks for help in advance.
Where can I get the details on migration of existing projects using various technologies to asp.net?
What is the use of view state?
what is assembly?
what is the difference between console.writeline &console.output.writeline?
why we should use more than one web.config files in our application? I have two web.config files in my application. One in the root directory and another one inside a sub folder. When the application runs which web.config file will run? why?
What's the advantage of using System.Text.StringBuilder over System.String?
3 Answers IBM, IdeaLake, Infosys,
You need to retrieve data from a Microsoft SQL Server 2000. Currently you are using an oleDbConnection object to connect to the database server. You need to be able to retrieve the data from the database server in XML format. Which approach would be the most efficient? Select all that apply. Each answer constitutes part of the whole answer. a) Change to the SQL .NET provider. b) Use the ExecuteXmlReader() method of the xxxCommand object c) Use the DOM to create the XML document. d) Use the XmlDocument.Load() method to create the XML Document.
I have an excel file with data, i am importing this excel file data into Sqlserver 2005 database. while importing i am getting wrong data(ie, special characters) in one column(description column), upto some limit the data in that column is coming fine,after that data is coming like below. The "Walter" leather storage bench is one of our most popular styles. The top with the tufting and double stitching finish a very impressive piece. The size is perfect in front of beds and the storage adds another functional bonus. Open it up and sneak al���Ƴ�Â��ƴ�Ã��ƶ�Å�� al���Ƴ�Â��ƴ�Ã��ƶ�Å�� Is there anywhy to resolve this? (I am using recordset in coding for developing import process.) please help me soon.
How do we access view state value of this page in the next page?
What is different between webconfig.xml & Machineconfig.xml ?
Tell me what is the request flow used for asp.net mvc framework? : asp.net mvc