using System; using System.Collections; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System { /// Represents a value tuple with 6 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. /// The type of the value tuple's fifth element. /// The type of the value tuple's sixth element. // Token: 0x02000080 RID: 128 [Token(Token = "0x2000080")] [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. /// The value tuple's fifth element. /// The value tuple's sixth element. // Token: 0x06000360 RID: 864 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000360")] [Address(RVA = "0x3501880", Offset = "0x3500880", VA = "0x183501880")] public ValueTuple(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6) { } /// 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: 0x06000361 RID: 865 RVA: 0x000038A0 File Offset: 0x00001AA0 [Token(Token = "0x6000361")] [Address(RVA = "0x34FEC60", Offset = "0x34FDC60", VA = "0x1834FEC60", 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: 0x06000362 RID: 866 RVA: 0x000038B8 File Offset: 0x00001AB8 [Token(Token = "0x6000362")] [Address(RVA = "0x34FEEE0", Offset = "0x34FDEE0", VA = "0x1834FEEE0", 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: 0x06000363 RID: 867 RVA: 0x000038D0 File Offset: 0x00001AD0 [Token(Token = "0x6000363")] [Address(RVA = "0x3500170", Offset = "0x34FF170", VA = "0x183500170", 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: 0x06000364 RID: 868 RVA: 0x000038E8 File Offset: 0x00001AE8 [Token(Token = "0x6000364")] [Address(RVA = "0x3500BD0", Offset = "0x34FFBD0", VA = "0x183500BD0", 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. /// 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: 0x06000365 RID: 869 RVA: 0x00003900 File Offset: 0x00001B00 [Token(Token = "0x6000365")] [Address(RVA = "0x34FE210", Offset = "0x34FD210", VA = "0x1834FE210", 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. /// 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: 0x06000366 RID: 870 RVA: 0x00003918 File Offset: 0x00001B18 [Token(Token = "0x6000366")] [Address(RVA = "0x34FFB50", Offset = "0x34FEB50", VA = "0x1834FFB50", 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: 0x06000367 RID: 871 RVA: 0x00003930 File Offset: 0x00001B30 [Token(Token = "0x6000367")] [Address(RVA = "0x34FF7C0", Offset = "0x34FE7C0", VA = "0x1834FF7C0", 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: 0x06000368 RID: 872 RVA: 0x00003948 File Offset: 0x00001B48 [Token(Token = "0x6000368")] [Address(RVA = "0x35008F0", Offset = "0x34FF8F0", VA = "0x1835008F0", Slot = "6")] int IStructuralEquatable.GetHashCode(IEqualityComparer comparer) { return 0; } // Token: 0x06000369 RID: 873 RVA: 0x00003960 File Offset: 0x00001B60 [Token(Token = "0x6000369")] [Address(RVA = "0x34FF250", Offset = "0x34FE250", VA = "0x1834FF250")] private int GetHashCodeCore(IEqualityComparer comparer) { return 0; } /// Returns a string that represents the value of this instance. /// The string representation of this instance. // Token: 0x0600036A RID: 874 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x600036A")] [Address(RVA = "0x3500DF0", Offset = "0x34FFDF0", VA = "0x183500DF0", Slot = "3")] public override string ToString() { return null; } /// Gets the value of the current instance's first element. // Token: 0x040001C4 RID: 452 [global::Cpp2IlInjected.FieldOffset(Offset = "0x0")] [Token(Token = "0x40001C4")] public T1 Item1; /// Gets the value of the current instance's second element. // Token: 0x040001C5 RID: 453 [global::Cpp2IlInjected.FieldOffset(Offset = "0x0")] [Token(Token = "0x40001C5")] public T2 Item2; /// Gets the value of the current instance's third element. // Token: 0x040001C6 RID: 454 [global::Cpp2IlInjected.FieldOffset(Offset = "0x0")] [Token(Token = "0x40001C6")] public T3 Item3; /// Gets the value of the current instance's fourth element. // Token: 0x040001C7 RID: 455 [global::Cpp2IlInjected.FieldOffset(Offset = "0x0")] [Token(Token = "0x40001C7")] public T4 Item4; /// Gets the value of the current instance's fifth element. // Token: 0x040001C8 RID: 456 [global::Cpp2IlInjected.FieldOffset(Offset = "0x0")] [Token(Token = "0x40001C8")] public T5 Item5; /// Gets the value of the current instance's sixth element. // Token: 0x040001C9 RID: 457 [global::Cpp2IlInjected.FieldOffset(Offset = "0x0")] [Token(Token = "0x40001C9")] public T6 Item6; } }