Can we throw exception from catch block

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is enum a value type c#?

765


How to get the sum of last 3 items in a list using lambda expressions?

684


What is action in c# 3.5?

730


What is the difference between ref and out parameters in c#?

666


What does char mean in c#?

688


What is the advantage of constructor in c#?

672


What is extension method in c sharp?

647


What is variable and its classification?

698


What is attribute c#?

591


Why abstract class is not instantiated in c#?

689


Is c# pass by reference?

680


Is int a struct in c#?

661


Can you instantiate an abstract class c#?

671


If I have more than one version of one assemblies, then how'll I use old version (how/where to specify version number?)in my application?

691


Why can’t struct be used instead of class for storing entity?

675