Error handling and how this is done ?
Answer Posted / kishore anumala
Error handling is the Main concept of debugging.
This can be done by creating the log files when an
exception is occurred to trace the error where exactly it
occurred..
Example:
try
{
Your code;
}
catch(exception e)
{
Here you can log the error by using object e;
}
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How can you achieve run time polymorphism in C#?
What is difference between array and collection in c#?
What are the types of delegates in c#?
What is difference between sleep () and wait ()?
Explain types of comment in c# with examples
Does unity require coding?
What is type class in c#?
What are the 2 broad classifications of fields in c#?
What does assert() do in c#?
Define MSIL, and how does it works? Why our developers need an appreciation of it if at all?
How Is The Dll Hell Problem Solved In .net?
What is the data provider name to connect to access database?
Is there a way of specifying which block or loop to break out of when working with nested loops?
What are extensions in c#?
Is arraylist generic in c#?