CarDealer类 事件发布程序 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DelegateEvent { public class CarInfoEventArgs : EventArgs { public string Car { get; private set; } public CarInfoEventArgs(string car)…