using System;
namespace System
{
/// Represents the method that compares two objects of the same type.
/// Value Condition Less than 0 is less than .0 equals .Greater than 0 is greater than .
/// The first object to compare.
/// The second object to compare.
/// The type of the objects to compare.
/// 1
// Token: 0x020006E7 RID: 1767
// (Invoke) Token: 0x06004224 RID: 16932
public delegate int Comparison(T x, T y);
}