using System;
namespace System.Collections.Generic
{
/// Defines a method that a type implements to compare two objects.
/// The type of objects to compare.
/// 1
// Token: 0x02000109 RID: 265
public interface IComparer
{
/// Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.
/// Value Condition Less than zero is less than .Zero equals .Greater than zero is greater than .
/// The first object to compare.
/// The second object to compare.
// Token: 0x06000CF4 RID: 3316
int Compare(T x, T y);
}
}