2 using System
.Collections
.Generic
;
4 delegate void D (object param
);
8 void Assert (object a
) { }
9 void Execute (Action a
) { }
11 private D GetD
<T
> (object input
)
13 return delegate (object param
) {
14 IList
<object> col
= null;
28 public static void Main ()
30 new T ().GetD
<long> (null) (9);