Generic Array는 C++의 template랑 비슷한 형태를 하고 있다. 에서 T는 변수의 형식이 된다. static void ProcessItems(IList coll) { // IsReadOnly returns True for the array and False for the List. System.Console.WriteLine("IsReadOnly returns {0} for this collection.", coll.IsReadOnly); // The following statement causes a run-time exception for the // array, but not for the List. //coll.RemoveAt(4); foreach (T item in coll) {..