Example #1
0
        void Start()
        {
            Girl girl = new Girl
            {
                Name = "李娇娇"
            };
            Proxy proxy = new Proxy(girl);

            proxy.GiveDolls();
            proxy.GiveFlowers();
            proxy.GiveChocolate();
        }
Example #2
0
 public Proxy(Girl girl)
 {
     boy = new Pursuit(girl);
 }
Example #3
0
 public Pursuit(Girl girl)
 {
     this.girl = girl;
 }