2 using System
.Collections
.Generic
;
8 private List
<Action
<T
[]>> l
= new List
<Action
<T
[]>>();
10 protected void W
<R
>(string s
, Func
<T
, R
> f
)
12 Action
<T
[]> w
= delegate(T
[] d
)
14 R
[] r
= new R
[d
.Length
];
15 for (int i
= 0; i
< d
.Length
; i
++)
25 public static void Main ()