コード例 #1
0
        private static void NewMethod()
        {
            Girl leng = new Girl {
                Name = "kat"
            };

            Pursuit yi = new Pursuit(leng);

            yi.GiveChocolate();
            yi.GiveDolls();
            yi.GiveFlowers();

            Console.Read();
        }
コード例 #2
0
        static void Main(string[] args)
        {
            // NewMethod();
            //NewMethod1();
            Girl girl = new Girl {
                Name = "leng"
            };
            Proxy proxy = new Proxy(girl);

            proxy.GiveDolls();
            proxy.GiveFlowers();
            proxy.GiveChocolate();
            Console.Read();
        }
コード例 #3
0
 public Pursuit(Girl mm)
 {
     _mm = mm;
 }