using System;
using System.Collections;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// Represents a value tuple with 4 components.
/// The type of the value tuple's first element.
/// The type of the value tuple's second element.
/// The type of the value tuple's third element.
/// The type of the value tuple's fourth element.
// Token: 0x0200007F RID: 127
[Token(Token = "0x200007F")]
[Serializable]
[StructLayout(3)]
public struct ValueTuple : IEquatable>, IStructuralEquatable, IStructuralComparable, IComparable, IComparable>
{
/// Initializes a new instance.
/// The value tuple's first element.
/// The value tuple's second element.
/// The value tuple's third element.
/// The value tuple's fourth element.
// Token: 0x06000355 RID: 853 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000355")]
[Address(RVA = "0x34FE1F0", Offset = "0x34FD1F0", VA = "0x1834FE1F0")]
public ValueTuple(T1 item1, T2 item2, T3 item3, T4 item4)
{
}
/// Returns a value that indicates whether the current instance is equal to a specified object.
/// The object to compare with this instance.
///
/// if the current instance is equal to the specified object; otherwise, .
// Token: 0x06000356 RID: 854 RVA: 0x000037C8 File Offset: 0x000019C8
[Token(Token = "0x6000356")]
[Address(RVA = "0x34F8870", Offset = "0x34F7870", VA = "0x1834F8870", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// Returns a value that indicates whether the current instance is equal to a specified instance.
/// The value tuple to compare with this instance.
///
/// if the current instance is equal to the specified tuple; otherwise, .
// Token: 0x06000357 RID: 855 RVA: 0x000037E0 File Offset: 0x000019E0
[Token(Token = "0x6000357")]
[Address(RVA = "0x34F8500", Offset = "0x34F7500", VA = "0x1834F8500", Slot = "4")]
public bool Equals(ValueTuple other)
{
return default(bool);
}
/// Returns a value that indicates whether the current instance is equal to a specified object based on a specified comparison method.
/// The object to compare with this instance.
/// An object that defines the method to use to evaluate whether the two objects are equal.
///
/// if the current instance is equal to the specified objects; otherwise, .
// Token: 0x06000358 RID: 856 RVA: 0x000037F8 File Offset: 0x000019F8
[Token(Token = "0x6000358")]
[Address(RVA = "0x34FB3B0", Offset = "0x34FA3B0", VA = "0x1834FB3B0", Slot = "5")]
bool IStructuralEquatable.Equals(object other, IEqualityComparer comparer)
{
return default(bool);
}
/// Compares the current instance to a specified object by using a specified comparer and returns an integer that indicates whether the current object is before, after, or in the same position as the specified object in the sort order.
/// The object to compare with the current instance.
/// A signed integer that indicates the relative position of this instance and in the sort order, as shown in the following table.
/// Value
///
/// Description
///
/// A negative integer
///
/// This instance precedes .
///
/// Zero
///
/// This instance and have the same position in the sort order.
///
/// A positive integer
///
/// This instance follows .
// Token: 0x06000359 RID: 857 RVA: 0x00003810 File Offset: 0x00001A10
[Token(Token = "0x6000359")]
[Address(RVA = "0x34FCA40", Offset = "0x34FBA40", VA = "0x1834FCA40", Slot = "8")]
int IComparable.CompareTo(object other)
{
return 0;
}
/// Compares the current instance to a specified instance.
/// The tuple to compare with this instance.
/// A signed integer that indicates the relative position of this instance and in the sort order, as shown in the following table.
/// Vaue
///
/// Description
///
/// A negative integer
///
/// This instance precedes .
///
/// Zero
///
/// This instance and have the same position in the sort order.
///
/// A positive integer
///
/// This instance follows .
// Token: 0x0600035A RID: 858 RVA: 0x00003828 File Offset: 0x00001A28
[Token(Token = "0x600035A")]
[Address(RVA = "0x34F8060", Offset = "0x34F7060", VA = "0x1834F8060", Slot = "9")]
public int CompareTo(ValueTuple other)
{
return 0;
}
/// Compares the current instance to a specified object by using a specified comparer and returns an integer that indicates whether the current object is before, after, or in the same position as the specified object in the sort order.
/// The object to compare with the current instance.
/// An object that provides custom rules for comparison.
/// A signed integer that indicates the relative position of this instance and in the sort order, as shown in the following table.
/// Vaue
///
/// Description
///
/// A negative integer
///
/// This instance precedes .
///
/// Zero
///
/// This instance and have the same position in the sort order.
///
/// A positive integer
///
/// This instance follows .
// Token: 0x0600035B RID: 859 RVA: 0x00003840 File Offset: 0x00001A40
[Token(Token = "0x600035B")]
[Address(RVA = "0x34FA7E0", Offset = "0x34F97E0", VA = "0x1834FA7E0", Slot = "7")]
int IStructuralComparable.CompareTo(object other, IComparer comparer)
{
return 0;
}
/// Calculates the hash code for the current instance.
/// The hash code for the current instance.
// Token: 0x0600035C RID: 860 RVA: 0x00003858 File Offset: 0x00001A58
[Token(Token = "0x600035C")]
[Address(RVA = "0x34F9D90", Offset = "0x34F8D90", VA = "0x1834F9D90", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// Calculates the hash code for the current instance by using a specified computation method.
/// An object whose method calculates the hash code of the current instance.
/// A 32-bit signed integer hash code.
// Token: 0x0600035D RID: 861 RVA: 0x00003870 File Offset: 0x00001A70
[Token(Token = "0x600035D")]
[Address(RVA = "0x34FC2D0", Offset = "0x34FB2D0", VA = "0x1834FC2D0", Slot = "6")]
int IStructuralEquatable.GetHashCode(IEqualityComparer comparer)
{
return 0;
}
// Token: 0x0600035E RID: 862 RVA: 0x00003888 File Offset: 0x00001A88
[Token(Token = "0x600035E")]
[Address(RVA = "0x34F9C10", Offset = "0x34F8C10", VA = "0x1834F9C10")]
private int GetHashCodeCore(IEqualityComparer comparer)
{
return 0;
}
/// Returns a string that represents the value of this instance.
/// The string representation of this instance.
// Token: 0x0600035F RID: 863 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600035F")]
[Address(RVA = "0x34FD620", Offset = "0x34FC620", VA = "0x1834FD620", Slot = "3")]
public override string ToString()
{
return null;
}
/// Gets the value of the current instance's first element.
// Token: 0x040001C0 RID: 448
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40001C0")]
public T1 Item1;
/// Gets the value of the current instance's second element.
// Token: 0x040001C1 RID: 449
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40001C1")]
public T2 Item2;
/// Gets the value of the current instance's third element.
// Token: 0x040001C2 RID: 450
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40001C2")]
public T3 Item3;
/// Gets the value of the current instance's fourth element.
// Token: 0x040001C3 RID: 451
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40001C3")]
public T4 Item4;
}
}