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