Пример #1
0
        public static void Main()
        {
            MyClass mc = new MyClass();

            try
            {
                mc.Method();
            }
            catch (Exception)
            {
                Console.WriteLine("Exception caught here");
            }
            Console.WriteLine("LAST STATEMENT");
            Console.ReadLine();
        }