If all code is written in a try block and write a catch
block with Exception type Exception .In that scenario will
all the exceptions catched by that catch block? or any
exceptions which will not be caught?
Answer Posted / vinay tiwari
if we use some piece of code that return in different
language then there may be exception that are not define in
exception class to catch these type of exception we use
general catch handler
for exe
try
{
........
}
catch
{
..........
} //catch block without parameter is called general catch
handler
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is a streamwriter in c#?
What is method and function in c#?
What is a dbml?
Can we declare private class in c#?
Does a class need a constructor c#?
What are the string functions in c#?
What do multicast delegates mean?
Is a structure a class?
What is Implicit conversion in C#?
Explain types of comment in c# with examples
What are the different types of delegates?
Why is lazy loading?
What are destructors in C#?
What is a string c#?
How do I join one form to another in c#?