Error handling and how this is done ?
Answers were Sorted based on User's Feedback
Error handling is the display the unknown error during the
runtime.here we can use the exception to handle the
error.we also have tje throw exception but its very
difficult to predict the place to identify the error.
try
{
//set of processing code
}
catch(Exception e)
{
Console.WriteLine("Error:"+e.Message);
}
finaly
{
Console.WriteLine("Example Program for the Error
Handling");
}
here set of codes will be executed if any error has found
it will throw the exception from catch block.But finally
will executed compulsarily whether error occured or not
event if you teriminate the control outside from block.
Is This Answer Correct ? | 4 Yes | 1 No |
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 |
how can include .netframeworl 2.0 in application setup
Can a static class have a constructor c#?
Is null empty or whitespace c#?
How do switch statements work?
What is the default scope of a class in c#?
What is check/uncheck?
What are the different types of constructors in c#?
Is multiple inheritance possible in c#?
What is the difference between array.find method and arraylist.find method?
Does c# do array bounds checking?
What is a console operator?
Which are the access modifiers available in c#?