예제 #1
0
파일: Program.cs 프로젝트: AlienaAngel/PSP
        static void Main(string[] args)
        {
            MyNetwork net = new MyNetwork();
            try
            {
                net.GetDateFromClients();
            }
            catch (Exception e) { }
            finally { net.Close(); }
            Console.ReadKey();

        }
예제 #2
0
        static void Main(string[] args)
        {
            MyNetwork net = new MyNetwork();

            try
            {
                net.GetDateFromClients();
            }
            catch (Exception e) { }
            finally { net.Close(); }
            Console.ReadKey();
        }