public interface IList :
ICollection,
IEnumerable
{
// Metodlar
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);
// Property'ler
bool IsFixedSize { get; }
bool IsReadOnly { get; }
object this[int index] { get; set; }
}