Answer Posted / nithya
We can throw exception in catch block
Like
try
{
int a=10/0;
}
catch(Exception ex)
{
throw ex;
}
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Why we use anonymous methods in c#?
Difference between directcast and ctype.
what is method overloading in c#?
How many bytes is an int in c#?
Can I define my own exceptions?
What is cshtml extension?
Name the method of servicebase class?
What is difference between ienumerable and ienumerator in c#?
Why do we use partial class in c#?
Why do we Need of static class in c#?
When Should You Call The Garbage Collector In .net?
What is default access modifier for class in c#?
What is Garbage Collection in .Net?
In howmany ways can you deploy an assembly?
What is string interpolation in c#?