摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace MyDelegate{ delegate void Del(string str); class Program { static void Main(string[] args... 阅读全文
摘要:
控制台应用程序代码using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace MyDelegate{ delegate void Del(string msg); class Program { static void Main(string[] args) { Del handler = ReturnMsg; string info = "名叫小白,年方二八,除了没钱和长的太帅外基... 阅读全文
摘要:
控制台应用程序效果:代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace MyEventTest{ class Program { /// /// 第一步 新建委托需要的带参数的类,属于事件的参数的子类 /// public class MyClassEventArgs : EventArgs { private string name; ... 阅读全文