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
Is enum a value type c#?
How to get the sum of last 3 items in a list using lambda expressions?
What is action in c# 3.5?
What is the difference between ref and out parameters in c#?
What does char mean in c#?
What is the advantage of constructor in c#?
What is extension method in c sharp?
What is variable and its classification?
What is attribute c#?
Why abstract class is not instantiated in c#?
Is c# pass by reference?
Is int a struct in c#?
Can you instantiate an abstract class c#?
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?
Why can’t struct be used instead of class for storing entity?