2 using System
.Collections
.Generic
;
6 public static int Main ()
8 MySystem mySystem
= new MySystem ();
12 public static void TestFunction (IEnumerable
<string> items
)
15 Console
.WriteLine ("1");
16 newList
= new List
<string> (items
);
17 Console
.WriteLine ("2");
18 newList
= new List
<string> (items
);
24 private List
<string> _items
= new List
<string> ();
31 public IEnumerable
<string> Items
35 foreach (string i
in _items
) {
36 Console
.WriteLine (i
);