svn path=/branches/mono-1-1-9/mono/; revision=51217
[mono.git] / mcs / class / corlib / System.Collections.Generic / IList.cs
index eae1c53cffa73725783965504f19d773f530428a..096aa7f95c3babfe74d20802ac720456920bcf29 100644 (file)
@@ -37,33 +37,15 @@ using System.Runtime.InteropServices;
 
 namespace System.Collections.Generic
 {
-       [CLSCompliant(false)]
-       [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] {
+               T this [int index] {
                        get; set;
                }
        }