7 public static int Compare
<T
> (T
[] array1
, T
[] array2
)
12 public static void DoSomething
<T
> (Func
<T
, T
, int> fn
)
14 Console
.WriteLine (fn (default (T
), default (T
)));
17 public static int Main ()
19 DoSomething
<byte[]> (TestCase
.Compare
);