Files
2026-04-10 22:50:51 +02:00

227 lines
11 KiB
C#

using System;
using System.Collections;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// <summary>Represents a value tuple with 6 components.</summary>
/// <typeparam name="T1">The type of the value tuple's first element.</typeparam>
/// <typeparam name="T2">The type of the value tuple's second element.</typeparam>
/// <typeparam name="T3">The type of the value tuple's third element.</typeparam>
/// <typeparam name="T4">The type of the value tuple's fourth element.</typeparam>
/// <typeparam name="T5">The type of the value tuple's fifth element.</typeparam>
/// <typeparam name="T6">The type of the value tuple's sixth element.</typeparam>
// Token: 0x0200007A RID: 122
[Token(Token = "0x200007A")]
[Serializable]
[StructLayout(3)]
public struct ValueTuple<T1, T2, T3, T4, T5, T6> : IEquatable<ValueTuple<T1, T2, T3, T4, T5, T6>>, IStructuralEquatable, IStructuralComparable, IComparable, IComparable<ValueTuple<T1, T2, T3, T4, T5, T6>>
{
/// <summary>Initializes a new <see cref="T:System.ValueTuple`6" /> instance.</summary>
/// <param name="item1">The value tuple's first element.</param>
/// <param name="item2">The value tuple's second element.</param>
/// <param name="item3">The value tuple's third element.</param>
/// <param name="item4">The value tuple's fourth element.</param>
/// <param name="item5">The value tuple's fifth element.</param>
/// <param name="item6">The value tuple's sixth element.</param>
// Token: 0x06000347 RID: 839 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000347")]
[Address(RVA = "0x31B3DA0", Offset = "0x31B2BA0", VA = "0x1831B3DA0")]
public ValueTuple(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6)
{
}
/// <summary>Returns a value that indicates whether the current <see cref="T:System.ValueTuple`6" /> instance is equal to a specified object.</summary>
/// <param name="obj">The object to compare with this instance.</param>
/// <returns>
/// <see langword="true" /> if the current instance is equal to the specified object; otherwise, <see langword="false" />.</returns>
// Token: 0x06000348 RID: 840 RVA: 0x000037B0 File Offset: 0x000019B0
[Token(Token = "0x6000348")]
[Address(RVA = "0x31B1180", Offset = "0x31AFF80", VA = "0x1831B1180", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Returns a value that indicates whether the current <see cref="T:System.ValueTuple`6" /> instance is equal to a specified <see cref="T:System.ValueTuple`6" /> instance.</summary>
/// <param name="other">The value tuple to compare with this instance.</param>
/// <returns>
/// <see langword="true" /> if the current instance is equal to the specified tuple; otherwise, <see langword="false" />.</returns>
// Token: 0x06000349 RID: 841 RVA: 0x000037C8 File Offset: 0x000019C8
[Token(Token = "0x6000349")]
[Address(RVA = "0x31B1400", Offset = "0x31B0200", VA = "0x1831B1400", Slot = "4")]
public bool Equals(ValueTuple<T1, T2, T3, T4, T5, T6> other)
{
return default(bool);
}
/// <summary>Returns a value that indicates whether the current <see cref="T:System.ValueTuple`6" /> instance is equal to a specified object based on a specified comparison method.</summary>
/// <param name="other">The object to compare with this instance.</param>
/// <param name="comparer">An object that defines the method to use to evaluate whether the two objects are equal.</param>
/// <returns>
/// <see langword="true" /> if the current instance is equal to the specified objects; otherwise, <see langword="false" />.</returns>
// Token: 0x0600034A RID: 842 RVA: 0x000037E0 File Offset: 0x000019E0
[Token(Token = "0x600034A")]
[Address(RVA = "0x31B2690", Offset = "0x31B1490", VA = "0x1831B2690", Slot = "5")]
bool IStructuralEquatable.Equals(object other, IEqualityComparer comparer)
{
return default(bool);
}
/// <summary>Compares the current <see cref="T:System.ValueTuple`6" /> 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.</summary>
/// <param name="other">The object to compare with the current instance.</param>
/// <returns>A signed integer that indicates the relative position of this instance and <paramref name="obj" /> in the sort order, as shown in the following table.
/// Value
///
/// Description
///
/// A negative integer
///
/// This instance precedes <paramref name="other" />.
///
/// Zero
///
/// This instance and <paramref name="other" /> have the same position in the sort order.
///
/// A positive integer
///
/// This instance follows <paramref name="other" />.</returns>
// Token: 0x0600034B RID: 843 RVA: 0x000037F8 File Offset: 0x000019F8
[Token(Token = "0x600034B")]
[Address(RVA = "0x31B30F0", Offset = "0x31B1EF0", VA = "0x1831B30F0", Slot = "8")]
int IComparable.CompareTo(object other)
{
return 0;
}
/// <summary>Compares the current <see cref="T:System.ValueTuple`6" /> instance to a specified <see cref="T:System.ValueTuple`6" /> instance.</summary>
/// <param name="other">The tuple to compare with this instance.</param>
/// <returns>A signed integer that indicates the relative position of this instance and <paramref name="other" /> in the sort order, as shown in the following table.
/// Value
///
/// Description
///
/// A negative integer
///
/// This instance precedes <paramref name="other" />.
///
/// Zero
///
/// This instance and <paramref name="other" /> have the same position in the sort order.
///
/// A positive integer
///
/// This instance follows <paramref name="other" />.</returns>
// Token: 0x0600034C RID: 844 RVA: 0x00003810 File Offset: 0x00001A10
[Token(Token = "0x600034C")]
[Address(RVA = "0x31B0730", Offset = "0x31AF530", VA = "0x1831B0730", Slot = "9")]
public int CompareTo(ValueTuple<T1, T2, T3, T4, T5, T6> other)
{
return 0;
}
/// <summary>Compares the current <see cref="T:System.ValueTuple`6" /> 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.</summary>
/// <param name="other">The object to compare with the current instance.</param>
/// <param name="comparer">An object that provides custom rules for comparison.</param>
/// <returns>A signed integer that indicates the relative position of this instance and <paramref name="other" /> in the sort order, as shown in the following table.
/// Value
///
/// Description
///
/// A negative integer
///
/// This instance precedes <paramref name="other" />.
///
/// Zero
///
/// This instance and <paramref name="other" /> have the same position in the sort order.
///
/// A positive integer
///
/// This instance follows <paramref name="other" />.</returns>
// Token: 0x0600034D RID: 845 RVA: 0x00003828 File Offset: 0x00001A28
[Token(Token = "0x600034D")]
[Address(RVA = "0x31B2070", Offset = "0x31B0E70", VA = "0x1831B2070", Slot = "7")]
int IStructuralComparable.CompareTo(object other, IComparer comparer)
{
return 0;
}
/// <summary>Calculates the hash code for the current <see cref="T:System.ValueTuple`6" /> instance.</summary>
/// <returns>The hash code for the current <see cref="T:System.ValueTuple`6" /> instance.</returns>
// Token: 0x0600034E RID: 846 RVA: 0x00003840 File Offset: 0x00001A40
[Token(Token = "0x600034E")]
[Address(RVA = "0x31B1CE0", Offset = "0x31B0AE0", VA = "0x1831B1CE0", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Calculates the hash code for the current <see cref="T:System.ValueTuple`6" /> instance by using a specified computation method.</summary>
/// <param name="comparer">An object whose <see cref="M:System.Collections.IEqualityComparer.GetHashCode(System.Object)" /> method calculates the hash code of the current <see cref="T:System.ValueTuple`6" /> instance.</param>
/// <returns>A 32-bit signed integer hash code.</returns>
// Token: 0x0600034F RID: 847 RVA: 0x00003858 File Offset: 0x00001A58
[Token(Token = "0x600034F")]
[Address(RVA = "0x31B2E10", Offset = "0x31B1C10", VA = "0x1831B2E10", Slot = "6")]
int IStructuralEquatable.GetHashCode(IEqualityComparer comparer)
{
return 0;
}
// Token: 0x06000350 RID: 848 RVA: 0x00003870 File Offset: 0x00001A70
[Token(Token = "0x6000350")]
[Address(RVA = "0x31B1770", Offset = "0x31B0570", VA = "0x1831B1770")]
private int GetHashCodeCore(IEqualityComparer comparer)
{
return 0;
}
/// <summary>Returns a string that represents the value of this <see cref="T:System.ValueTuple`6" /> instance.</summary>
/// <returns>The string representation of this <see cref="T:System.ValueTuple`6" /> instance.</returns>
// Token: 0x06000351 RID: 849 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000351")]
[Address(RVA = "0x31B3310", Offset = "0x31B2110", VA = "0x1831B3310", Slot = "3")]
public override string ToString()
{
return null;
}
/// <summary>Gets the value of the current <see cref="T:System.ValueTuple`6" /> instance's first element.</summary>
// Token: 0x040001BA RID: 442
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40001BA")]
public T1 Item1;
/// <summary>Gets the value of the current <see cref="T:System.ValueTuple`6" /> instance's second element.</summary>
// Token: 0x040001BB RID: 443
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40001BB")]
public T2 Item2;
/// <summary>Gets the value of the current <see cref="T:System.ValueTuple`6" /> instance's third element.</summary>
// Token: 0x040001BC RID: 444
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40001BC")]
public T3 Item3;
/// <summary>Gets the value of the current <see cref="T:System.ValueTuple`6" /> instance's fourth element.</summary>
// Token: 0x040001BD RID: 445
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40001BD")]
public T4 Item4;
/// <summary>Gets the value of the current <see cref="T:System.ValueTuple`6" /> instance's fifth element.</summary>
// Token: 0x040001BE RID: 446
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40001BE")]
public T5 Item5;
/// <summary>Gets the value of the current <see cref="T:System.ValueTuple`6" /> instance's sixth element.</summary>
// Token: 0x040001BF RID: 447
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40001BF")]
public T6 Item6;
}
}