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

using System;

namespace System.Collections {
	public interface IList : ICollection, IEnumerable {

		bool IsFixedSize { get; }

		bool IsReadOnly { get; }

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

		int Add(object value);

		void Clear();

		bool Contains(object value);

		int IndexOf(object value);

		void Insert(int index, object value);

		void Remove(object value);

		void RemoveAt(int index);

	}
}
#endif