2 using System
.Reflection
;
3 using System
.Runtime
.InteropServices
;
5 public delegate int D ([In
] ref int arg
);
9 public static int Main ()
11 var methods
= typeof (D
).GetMethods ();
12 foreach (var m
in methods
) {
13 var pi
= m
.GetParameters ();