static void Main(string[] args) { SchoolGirl Marry = new SchoolGirl(); Marry.Name = "馬力"; proxy toolMan = new proxy(Marry); toolMan.GiveFlowers(); toolMan.GiveChocolate(); toolMan.GiveDolls(); Console.Read(); }
public proxy(SchoolGirl schoolGirl) { gg = new Pursuit(schoolGirl); }
public Pursuit(SchoolGirl SchoolGirl) { this.mm = SchoolGirl; }