摘要:
自己做的笔记,懒得文字说明了 阅读全文
摘要:
Car.cs public class Car{ public event EventHandler<EventArgs> Exploded; public void show() { Exploded(this,EventArgs.Empty); }} public class CarEventArgs : EventArgs{} Program.cs static void M... 阅读全文