Can we throw exception from catch block

Answers were Sorted based on User's Feedback



Can we throw exception from catch block..

Answer / chandan kumar

yes, we can throw exception from catch block

Is This Answer Correct ?    17 Yes 2 No

Can we throw exception from catch block..

Answer / chandan kumar

yes we can, i have tried it.it is working fine

Is This Answer Correct ?    5 Yes 0 No

Can we throw exception from catch block..

Answer / sudipta

Throw statement can be used in the catch block to rethrow
the exception,which has been caught by the catch statement.

Is This Answer Correct ?    4 Yes 0 No

Can we throw exception from catch block..

Answer / brijen.patel

Yes, we can throw exception from catch block.

Is This Answer Correct ?    4 Yes 0 No

Can we throw exception from catch block..

Answer / prosanta

yes,

follow this example-

static void Main(string[] args)
{
try
{
throw new Exception();
}
catch
{
try
{
Console.WriteLine("This is the 1st
exception");
throw new Exception();
}
catch
{
Console.WriteLine("This is the 2nd
exception");
Console.Read();
}
}

}




output:
This is the 1st exception
This is the 2nd exception

Is This Answer Correct ?    5 Yes 2 No

Can we throw exception from catch block..

Answer / roopali

no we cannot

Is This Answer Correct ?    1 Yes 9 No

Post New Answer

More C Sharp Interview Questions

Explain the Usage of web.config

0 Answers   Microsoft,


What are the generation of Garbage Collection in C# .NET ?

0 Answers   MCN Solutions,


Is c# pass by reference?

0 Answers  


Tell me the difference between value passing and address passing?

0 Answers   NIIT,


Explain the difference between Response.Write () and Response.Output.Write ().

0 Answers   Atos Origin,






What is the meaning of 0 in c#?

0 Answers  


What is dataset and dataadapter in c#?

0 Answers  


What is an arraylist in c#?

0 Answers  


What is ildasm.exe used for?

0 Answers  


WHICH IS THE BEST BOOK FOR A BEGINNER TO LEARN AP.NET 3.5, C#.NET & ALL THE FEATURES OF VISUAL STUDIO2008? WHAT ARE THE CERTIFICATIONS IN THIS FIELD? WHICH IS BEST BOOK FOR CLAERING CERTIFICATION EXAM? PLZ HELP ME YAAR

1 Answers  


What do u meant by "SBI" of an object?

0 Answers  


When Should You Call The Garbage Collector In .net?

0 Answers   Siebel Systems,


Categories