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 difference between list and dictionary in c#?
What is a base class in C#?
0 Answers TryTechnicals Pvt Ltd,
Is c sharp open source?
How big is an int in c#?
How to override a function in c#?
How do you type a null character?
How will you allow a class to be inherited, but prevent the method from being over-ridden?
What Is A Satellite Assembly?
0 Answers PUCIT, Siebel Systems,
If I want to override a method 1 of class A and in class b then how do you declare ?
What is datatable and dataset in c#?
What is string empty?
What is a partial class in c#?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)