static void Main(string[] args) { Call c = new Call(); Sugar s = new Sugar(); Ant ant = new Ant(); ant.GetAnt(); s.show(ant); c.ss(s); ant.show(); Console.ReadLine(); }
public void ss(Sugar show) { Console.WriteLine("我招呼带两个同伴"); Console.WriteLine("现在大家搬运甜品"); }