1 using System
.Collections
.Generic
;
5 class ArrayReadOnlyList
<T
>
10 public ArrayReadOnlyList ()
14 public T
this [int index
]
22 public IEnumerator
<T
> GetEnumerator ()
24 for (int i
= 0; i
< array
.Length
; i
++)
25 yield return array
[i
];
29 public static void Main ()