2 using System
.Collections
.Generic
;
10 public delegate void MyDelegate (out List
<int> intToAdd
);
11 private void MyTemplate (MyDelegate myData
)
14 public void UseATemplate ()
17 delegate (out List
<int> intToAdd
) {
18 intToAdd
= new List
<int> ();
25 static void Main (string[] args
)