Newer
Older
DNA / corlib / System.Collections.Generic / IList.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 394 bytes First commit
#if !LOCALTEST

using System;

namespace System.Collections.Generic {

	public interface IList<T> : ICollection<T> {

		// DO NOT change the order of these method definitions.
		// The auto-generated IList<T> interface on Array relies on the order.

		int IndexOf(T item);

		void Insert(int index, T item);

		void RemoveAt(int index);

		T this[int index] {
			get;
			set;
		}

	}

}
#endif