定义、实现、调用委托EG:
delegate void IntMethodInvoker(int x);
IntMethodInvoker method= new IntMethodInvoker(2);
method(2); //或者method.Invoke();
其他:委托推断
Private void Button_Click(object sender,Eventargs e)
{}
//第一个参数为引发事件的对象
//第二个参数包含有关事件的其他有用信息的对象
定义、实现、调用委托EG:
delegate void IntMethodInvoker(int x);
IntMethodInvoker method= new IntMethodInvoker(2);
method(2); //或者method.Invoke();
其他:委托推断
Private void Button_Click(object sender,Eventargs e)
{}
//第一个参数为引发事件的对象
//第二个参数包含有关事件的其他有用信息的对象