예제 #1
0
파일: Program.cs 프로젝트: xvnukx/8.6.3
        static void Main(string[] args)
        {
            try
            {
                MyClass my = new MyClass();
                my.Do();
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }

            Console.ReadKey();
        }