示例#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();
        }
示例#2
0
 public proxy(SchoolGirl schoolGirl)
 {
     gg = new Pursuit(schoolGirl);
 }
示例#3
0
 public Pursuit(SchoolGirl SchoolGirl)
 {
     this.mm = SchoolGirl;
 }