委托
定义委托使用关键字delegate:
delegate int SomeDelegate(int nID, string sName);
再实例化:
SomeDelegate d1 = new SomeDelegate(wr.InstanceMethod); //wr是对象,有InstanceMethod实例方法
最后调用:
d1(5, "aaa");
通过委托SomeDelegate实现对方法InstanceMethod的调用,调用还必须有一个前提条件:方法InstanceMethod有参数且和定义SomeDelegate的参数一致,并且返回值为int。方法InstanceMethod的定义:
public int InstanceMethod(int nID, string sName)
委托的实例化中的参数既可以是实例方法,也可以是静态方法 |
|