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
What is addressof operator?
What is the CTS, and how does it relate to the CLS?
What is token in c#?
Does unity require coding?
What is the base class of all classes in c#?
How garbage collection deals with circular references.
What does void mean in c#?
what is object-oriented programming (oop) language?
Why is c# better than java?
What is a protected class c#?
How can I check the type of an object at runtime?
What are accessors?
What is a console in c#?
For methods inside the interface why can’t you specify the accessibility modifier?
write a C# Program add two matrix ?