svn path=/branches/mono-1-1-9/mono/; revision=51217
[mono.git] / mcs / class / corlib / System.Collections.Generic / IList.cs
index 1023d41882a73c80bd10e544f5603035cd2f0ae1..096aa7f95c3babfe74d20802ac720456920bcf29 100644 (file)
@@ -37,8 +37,6 @@ using System.Runtime.InteropServices;
 
 namespace System.Collections.Generic
 {
-       [CLSCompliant(false)]
-       [ComVisible(false)]
        public interface IList<T> : ICollection<T>
        {
                int IndexOf (T item);
@@ -47,7 +45,7 @@ namespace System.Collections.Generic
 
                void RemoveAt (int index);
 
-               T this [int switchName] {
+               T this [int index] {
                        get; set;
                }
        }