| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
- //
- // System.Collections.IList
- //
- // Author:
- // Vladimir Vukicevic ([email protected])
- //
- // (C) 2001 Vladimir Vukicevic
- //
- using System;
- namespace System.Collections {
- public interface IList : ICollection, IEnumerable {
- // properties
- bool IsFixedSize { get; }
- bool IsReadOnly { get; }
- object this[int index] { get; set; }
- // methods
- 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);
- }
- }
|