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