New test.
[mono.git] / mcs / class / corlib / System.Collections.Generic / IComparer.cs
index 2b90c5bae43dccb742917769060ea9dd2f09a839..fafab15667f1d4ffbb25cf6e14e2086152965d30 100644 (file)
@@ -35,12 +35,8 @@ using System;
 using System.Runtime.InteropServices;
 
 namespace System.Collections.Generic {
-       [CLSCompliant(false)]
-       [ComVisible(false)]
        public interface IComparer<T> {
                int Compare (T x, T y);
-               bool Equals (T x, T y);
-               int GetHashCode (T obj);
        }
 }
 #endif