Move docs.
[mono.git] / mcs / class / corlib / System.Collections / IEqualityComparer.cs
index 9ef0b1670a960a1a9a757fff4f4ac4a486a0dee4..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 {
-
+namespace System.Collections
+{
        [ComVisible(true)]
-       public interface IEqualityComparer {
+       public interface IEqualityComparer 
+       {
                bool Equals (object x, object y);
-               int GetHashCode(object x);
+               int GetHashCode (object obj);
        }
 }
-#endif