예제 #1
0
파일: Program.cs 프로젝트: ZubSam/Project
        static void Main(string[] args)
        {
            var test = new Test();

            try
            {
                test.Print();
            }
            catch (Exception)
            {
                Console.Write("5");
            }
            finally
            {
                Console.Write("4");
            }
            Console.ReadLine();
        }