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
Which is executed if an exception has not occurred?
Can we override constructor in c#?
What is lock in c#?
Explain synchronous and asynchronous operations?
What is different between Static Constructor and Private Constructor?
How do you create partial methods?
Explain the working of serialization?
Does c# support #define for defining global constants?
What is different about switch statements in c#?
How do you concatenate in c#?
How Do You Convert A Value-type To A Reference-type?
Are c# strings immutable?
What are types of constructor?
How do you escape in c#?
what is .NET framework architecture ??