2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / corlib / System.Collections.Generic / IList.cs
index eae1c53cffa73725783965504f19d773f530428a..1023d41882a73c80bd10e544f5603035cd2f0ae1 100644 (file)
@@ -41,28 +41,12 @@ namespace System.Collections.Generic
        [ComVisible(false)]
        public interface IList<T> : ICollection<T>
        {
-               int Add (T item);
-
-               void Clear ();
-
-               bool Contains (T item);
-
                int IndexOf (T item);
 
                void Insert (int index, T item);
 
-               void Remove (T item);
-
                void RemoveAt (int index);
 
-               bool IsFixedSize {
-                       get;
-               }
-
-               bool IsReadOnly {
-                       get;
-               }
-
                T this [int switchName] {
                        get; set;
                }