using System;
using System.Globalization;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Collections
{
/// Compares two objects for equivalence, where string comparisons are case-sensitive.
// Token: 0x020005C8 RID: 1480
[Token(Token = "0x20005C8")]
[ComVisible(true)]
[Serializable]
public sealed class Comparer : IComparer, ISerializable
{
// Token: 0x06002DF8 RID: 11768 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002DF8")]
[Address(RVA = "0x2C302C0", Offset = "0x2C2F2C0", VA = "0x182C302C0")]
private Comparer()
{
}
/// Initializes a new instance of the class using the specified .
/// The to use for the new .
///
/// is .
// Token: 0x06002DF9 RID: 11769 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002DF9")]
[Address(RVA = "0x2C30120", Offset = "0x2C2F120", VA = "0x182C30120")]
public Comparer(CultureInfo culture)
{
}
// Token: 0x06002DFA RID: 11770 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002DFA")]
[Address(RVA = "0x2C301B0", Offset = "0x2C2F1B0", VA = "0x182C301B0")]
private Comparer(SerializationInfo info, StreamingContext context)
{
}
/// Performs a case-sensitive comparison of two objects of the same type and returns a value indicating whether one is less than, equal to, or greater than the other.
/// The first object to compare.
/// The second object to compare.
/// A signed integer that indicates the relative values of and , as shown in the following table.
/// Value
///
/// Meaning
///
/// Less than zero
///
/// is less than .
///
/// Zero
///
/// equals .
///
/// Greater than zero
///
/// is greater than .
/// Neither nor implements the interface.
/// -or-
/// and are of different types and neither one can handle comparisons with the other.
// Token: 0x06002DFB RID: 11771 RVA: 0x00019698 File Offset: 0x00017898
[Token(Token = "0x6002DFB")]
[Address(RVA = "0x2C2FE50", Offset = "0x2C2EE50", VA = "0x182C2FE50", Slot = "4")]
public int Compare(object a, object b)
{
return 0;
}
/// Populates a object with the data required for serialization.
/// The object to populate with data.
/// The context information about the source or destination of the serialization.
///
/// is .
// Token: 0x06002DFC RID: 11772 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002DFC")]
[Address(RVA = "0x2C2FFD0", Offset = "0x2C2EFD0", VA = "0x182C2FFD0", Slot = "5")]
public void GetObjectData(SerializationInfo info, StreamingContext context)
{
}
// Token: 0x04001A3A RID: 6714
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x4001A3A")]
private CompareInfo m_compareInfo;
/// Represents an instance of that is associated with the of the current thread. This field is read-only.
// Token: 0x04001A3B RID: 6715
[Token(Token = "0x4001A3B")]
public static readonly Comparer Default;
/// Represents an instance of that is associated with . This field is read-only.
// Token: 0x04001A3C RID: 6716
[Token(Token = "0x4001A3C")]
public static readonly Comparer DefaultInvariant;
}
}