Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

C# Interview Questions and Answers

Ques 21. What debugging tools come with the .NET SDK?

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

Is it helpful? Add Comment View Comments
 

Ques 22. What does the This window show in the debugger?

It points to the object that’s pointed to by this reference. Object’s instance data is shown.

Is it helpful? Add Comment View Comments
 

Ques 23. What does assert() do?

In debug compilation, assert takes in a Boolean condition as a parameter, and shows the error dialog if the condition is false. The program proceeds without any interruption if the condition is true.

Is it helpful? Add Comment View Comments
 

Ques 24. What’s the difference between the Debug class and Trace class?

Documentation looks the same. Use Debug class for debug builds, use Trace class for both debug and release builds.

Is it helpful? Add Comment View Comments
 

Ques 25. Why are there five tracing levels in System.Diagnostics.TraceSwitcher?

The tracing dumps can be quite verbose and for some applications that are constantly running you run the risk of overloading the machine and the hard drive there. Five levels range from None to Verbose, allowing to fine-tune the tracing activities.

Is it helpful? Add Comment View Comments
 

Most helpful rated by users:

©2024 WithoutBook