Can multiple catch blocks be executed?
Answers were Sorted based on User's Feedback
Answer / amina awan
Multiple catch blocks will not be executed. But we can use multiple catch blocks for a try block. The respective catch block will get executed according to the error arises.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / photon
No, When the Exception handled the Correct Catch Block
,After that the cursor is move to finally Block, the below
catch block was not handled.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / guest
No, once the proper catch code fires off, the control is
transferred to the finally block (if there are any), and
then whatever follows the finally block
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vijay saxena
No,
try
{
int p = 0;
int t = 6 / p;
}
catch (ArithmeticException ex)
{
Console.WriteLine("Arithmetic Exception");
}
catch (Exception ex)
{
Console.WriteLine("General Exception");
}
Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between field and property in c#?
What is array class in c#?
Are string objects mutable or immutable?
What is Garbage Collection in .Net?
Difference between abstract classes and interfaces
Explain namespaces in c#.
Can you declare a class or a struct as constant?
Why would you use a class property in c#?
What is type cast in C#?
0 Answers TryTechnicals Pvt Ltd,
Define sealed classes in c#?
What is icollection in c#?
What is a property c#?