You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
537 B
C#

/*
* C# Program to Illustrate Exception Handling for Invalid TypeCasting in UnBoxing
*/
class TestUnboxing
{
static void Main()
{
int num = 123;
object obj = num;
try
{
int j = (short)obj;
System.Console.WriteLine("Unboxing");
}
catch (System.InvalidCastException e)
{
System.Console.WriteLine("{0} Error: Incorrect unboxing", e.Message);
}
System.Console.Read();
}
}