more interfaces
[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 using System;
11 using System.Runtime.InteropServices;
12
13 namespace System.Collections.Generic {
14         [CLSCompliant(false)]
15         [ComVisible(false)]
16         public interface IComparer<T> {
17                 int Compare(T x, T y);
18         }
19 }
20