using System;
public class Program
{
public static void Main()
int i = 123;
string s = "Some string";
object obj = s;
try
// Invalid conversion;
i = (int)obj;
// The following statement is not run.
Console.WriteLine("WriteLine at the end of the try block.");
}
finally
Console.WriteLine("\n Finally Block executed !!!");