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 are the different types of comments in c#?
Explain the features of an abstract class in net.
What is stringreader in c#?
How assembly versioning in .NET prevent DLL Hell problem?
Does c# support properties of array types?
What language do desktop applications use?
How many constructor can a class have?
How can I get around scope problems in a try/catch?
What are the Configuration files in .net?
How do you inherit a class into other class in c#?
If you want to write your own dot net language, what steps you will u take care?
Is c# the same as d flat?
Why generics are used in c#?
What are strong name assemblies?
Why data types are important?