3 delegate void Test (int test
);
9 public static void hello (int arg
)
14 public static void world (int arg
)
19 public static int Main ()
21 Test a
= new Test (hello
);
22 Test b
= new Test (world
);
28 ((result
== 17) ? a
: b
) (2);
32 ((result
== 17) ? a
: b
) (2);