static void Main(string[] args) {//webservice的參考也是代理模式 SchoolGril yvonne = new SchoolGril(); yvonne.Name = "Yvonne"; Proxy kuan = new Proxy(yvonne); kuan.GiveChcoclate(); kuan.GiveDools(); kuan.GiveFlowers(); Console.ReadKey(); }
public Pursuit(SchoolGril girl) { this.girl = girl; }
public Proxy(SchoolGril girl) { gg = new Pursuit(girl); }