5 public delegate void DelegateA (bool b
);
6 public delegate int DelegateB (int i
);
11 public static int Main ()
13 bool b
= DelegateMethod
== dt
;
17 b
= DelegateMethod
!= dt
;
21 b
= dt2
== DelegateMethod
;
25 Console
.WriteLine ("OK");
29 static void DelegateMethod (bool b
)
33 static int DelegateMethod (int b
)