using System;
using Cpp2IlInjected;
namespace System
{
/// Represents the method that compares two objects of the same type.
/// The first object to compare.
/// The second object to compare.
/// The type of the objects to compare.
/// A signed integer that indicates the relative values of and , as shown in the following table.
/// Value
///
/// Meaning
///
/// Less than 0
///
/// is less than .
///
/// 0
///
/// equals .
///
/// Greater than 0
///
/// is greater than .
// Token: 0x020000A9 RID: 169
// (Invoke) Token: 0x060004CE RID: 1230
[Token(Token = "0x20000A9")]
public delegate int Comparison(T x, T y);
}