Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x02000080 RID: 128
[Token(Token = "0x2000080")]
[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: 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)
{
}
/// <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: 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);
}
/// <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: 0x06000362 RID: 866 RVA: 0x000038B8 File Offset: 0x00001AB8
[Token(Token = "0x6000362")]
[Address(RVA = "0x34FEEE0", Offset = "0x34FDEE0", VA = "0x1834FEEE0", 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: 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);
}
/// <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: 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;
}
/// <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: 0x06000365 RID: 869 RVA: 0x00003900 File Offset: 0x00001B00
[Token(Token = "0x6000365")]
[Address(RVA = "0x34FE210", Offset = "0x34FD210", VA = "0x1834FE210", 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: 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;
}
/// <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: 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;
}
/// <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: 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;
}
/// <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: 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;
}
/// <summary>Gets the value of the current <see cref="T:System.ValueTuple`6" /> instance's first element.</summary>
// Token: 0x040001C4 RID: 452
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40001C4")]
public T1 Item1;
/// <summary>Gets the value of the current <see cref="T:System.ValueTuple`6" /> instance's second element.</summary>
// Token: 0x040001C5 RID: 453
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40001C5")]
public T2 Item2;
/// <summary>Gets the value of the current <see cref="T:System.ValueTuple`6" /> instance's third element.</summary>
// Token: 0x040001C6 RID: 454
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40001C6")]
public T3 Item3;
/// <summary>Gets the value of the current <see cref="T:System.ValueTuple`6" /> instance's fourth element.</summary>
// Token: 0x040001C7 RID: 455
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40001C7")]
public T4 Item4;
/// <summary>Gets the value of the current <see cref="T:System.ValueTuple`6" /> instance's fifth element.</summary>
// Token: 0x040001C8 RID: 456
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40001C8")]
public T5 Item5;
/// <summary>Gets the value of the current <see cref="T:System.ValueTuple`6" /> instance's sixth element.</summary>
// Token: 0x040001C9 RID: 457
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40001C9")]
public T6 Item6;
}
}