コード例 #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();
        }