コード例 #1
0
ファイル: Program.cs プロジェクト: erdonet/GofPatterns
        static void Main(string[] arg)
        {
            ProxyUserInformation proxy = new ProxyUserInformation();
            Console.WriteLine(proxy.GetUserInformation());

            Console.ReadLine();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: nomada2/GofPatterns
        static void Main(string[] arg)
        {
            ProxyUserInformation proxy = new ProxyUserInformation();

            Console.WriteLine(proxy.GetUserInformation());

            Console.ReadLine();
        }