static void Main(string[] args) { SchoolGirl girl = new SchoolGirl(); girl.Name = "李狗儿"; Agency daili = new Agency(girl); daili.GiveChoolate(); Console.Read(); }
public Agency(SchoolGirl girl) { boy = new Pursuer(girl); }
public Pursuer(SchoolGirl Girl) { girl = Girl; }