Ejemplo n.º 1
0
        void Start()
        {
            Girl girl = new Girl
            {
                Name = "李娇娇"
            };
            Proxy proxy = new Proxy(girl);

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