?????????????????÷?????????????????????????????????????????????????????????????????á?????????????????NET Framework??CLR?????????????????????????????????????????????й???????????????????????????е???????????C#??????????й??????÷?????????????????????????????????н?????????
???????????????Χ??????????
????//1.???????
????//2.??е??????
????//3.??е?????????????????????????????????
????//????????????????????????????з??????????
??????????????????????????????????????????????????????д????
?????????е????
??????C#????ù????delegate??????С???????е??????????
????//??е????
????// [???????η?]  delegate  ????????  ?????(?????б?....)
??????????????????????????
???????磺Delegate void d??int x??
?????????????????????????
??????????????????????????б????t??п???????????????????????
?????????????????????з?????????
????“??д???????”???????????????????
????“??д???????”????????????????????? null???????????
????????????
???????磺

 

Delegate void d??int x??
delegate void D(int x);
class C
{
public static void M1(int i) {...}
public void M2(int i) {...}
}
class Test
{
static void Main() {
D cd1 = new D(C.M1);      // static method
Test t = new C();
D cd2 = new D(t.M2);      // instance method
D cd3 = new D(cd2);      // another delegate
}
}