What is the use of giving more than one CATCH BLOCK in one
TRY block? Directly we can give that catch(Exception e)?Why
we go for arrayoutofbound Exception,divided by zero etc..?
Explain
Answer Posted / kavitha
try with single catch block will catch what ever the
exception thrown by the code inside the try block but it
will not be clear..some time a code in a try block can throw
different type of exception.To catch the different type of
exception what our code throws we can use difference type
of catch for the single try block it will be more clear and
help full.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is poco c#?
What is double c#?
How do you declare an interface in c#?
What is the difference between list and array in c#?
Define clr in .net?
What is the main usage of keyword “virtual†? How does it work for a method or property?
Is a c# interface the same as a c++ abstract class?
Which types of inheritances does c# support?
What do you mean by a windows process in regards to memory allocation?
Can a class or a struct have multiple constructors?
What is protected internal modifier in C#?
Do events have return type c#?
How do you remove white spaces from a string?
When a Static Constructor is called in a Class?
How do you comment in c#?