A
Q. What will be printed?
Code:
try
{
int x = int.Parse("abc");
}
catch(Exception)
{
Console.WriteLine("Error");
}
{
int x = int.Parse("abc");
}
catch(Exception)
{
Console.WriteLine("Error");
}
- Correct Answer - Option(D)
- Views: 1
- Filed under category .NET Programming
- Hashtags:
Discusssion
Login to discuss.