Exemplo n.º 1
0
        static void Main(string[] args)
        {
            SchoolGirl Marry = new SchoolGirl();

            Marry.Name = "馬力";
            proxy toolMan = new proxy(Marry);

            toolMan.GiveFlowers();
            toolMan.GiveChocolate();
            toolMan.GiveDolls();

            Console.Read();
        }
Exemplo n.º 2
0
 public proxy(SchoolGirl schoolGirl)
 {
     gg = new Pursuit(schoolGirl);
 }
Exemplo n.º 3
0
 public Pursuit(SchoolGirl SchoolGirl)
 {
     this.mm = SchoolGirl;
 }