2 using System
.Reflection
;
5 public static unsafe void meth (int a
, int* b
) {
8 ParameterInfo
[] args
= typeof (T
).GetMethod ("meth").GetParameters ();
9 if (args
[0].ParameterType
== args
[1].ParameterType
)
13 if (typeof(int) == typeof (int*))
16 if (args
[0].ParameterType
!= typeof(int))
20 if (args
[1].ParameterType
!= typeof(int*))