コード例 #1
0
ファイル: Program.cs プロジェクト: mahuidong/my-csharp-sample
        static void Main(string[] args)
        {
            Simple.Client c1 = new Simple.Client();
            c1.Test();

            Compound.Client c2 = new Compound.Client();
            c2.Test();

            Console.ReadLine();
        }