首页 > TAG信息列表 > NoticeEvent

委托和事件

1、委托 namespace ConsoleApp1 { class Program { public delegate void Del(string message); static void Main(string[] args) { Del hanld = new Del(DelegateMethod); MethodWithCallback(1, 2, hanld);