[Test] Cleaned up how a bunch of tests were ignored
[mono.git] / mcs / class / corlib / System.Collections / IEqualityComparer.cs
index 3162defcc30f5c1064163a24ecb07824f4413f65..ec74be59af8484418340b7b498b101e3f05000e6 100644 (file)
@@ -1,5 +1,5 @@
 //
-// System.Collections.Generic.IEqualityComparer
+// System.Collections.IEqualityComparer.cs
 //
 // Authors:
 //     David Waite (mass@akuma.org)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
 using System;
+using System.Runtime.InteropServices;
 
-namespace System.Collections {
-
-       public interface IEqualityComparer {
+namespace System.Collections
+{
+       [ComVisible(true)]
+       public interface IEqualityComparer 
+       {
                bool Equals (object x, object y);
-               int GetHashCode(object x);
+               int GetHashCode (object obj);
        }
 }
-#endif