Use `NET_2_0', not `GENERICS'.
[mono.git] / mcs / class / corlib / System.Collections.Generic / IComparer.cs
1 //
2 // System.Collections.Generic.IComparer
3 //
4 // Authors:
5 //      Ben Maurer (bmaurer@users.sourceforge.net)
6 //
7 // (C) 2003 Ben Maurer
8 //
9
10 #if NET_2_0
11 using System;
12 using System.Runtime.InteropServices;
13
14 namespace System.Collections.Generic {
15         [CLSCompliant(false)]
16         [ComVisible(false)]
17         public interface IComparer<T> {
18                 int Compare(T x, T y);
19         }
20 }
21 #endif