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

66 lines
2.7 KiB
C#

using System;
using Cpp2IlInjected;
namespace System
{
/// <summary>Provides static methods for creating tuple objects.</summary>
// Token: 0x02000082 RID: 130
[Token(Token = "0x2000082")]
public static class Tuple
{
/// <summary>Creates a new 2-tuple, or pair.</summary>
/// <param name="item1">The value of the first component of the tuple.</param>
/// <param name="item2">The value of the second component of the tuple.</param>
/// <typeparam name="T1">The type of the first component of the tuple.</typeparam>
/// <typeparam name="T2">The type of the second component of the tuple.</typeparam>
/// <returns>A 2-tuple whose value is (<paramref name="item1" />, <paramref name="item2" />).</returns>
// Token: 0x06000413 RID: 1043 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000413")]
[Address(RVA = "0x1B60850", Offset = "0x1B5F650", VA = "0x181B60850")]
public static Tuple<T1, T2> Create<T1, T2>(T1 item1, T2 item2)
{
return null;
}
/// <summary>Creates a new 3-tuple, or triple.</summary>
/// <param name="item1">The value of the first component of the tuple.</param>
/// <param name="item2">The value of the second component of the tuple.</param>
/// <param name="item3">The value of the third component of the tuple.</param>
/// <typeparam name="T1">The type of the first component of the tuple.</typeparam>
/// <typeparam name="T2">The type of the second component of the tuple.</typeparam>
/// <typeparam name="T3">The type of the third component of the tuple.</typeparam>
/// <returns>A 3-tuple whose value is (<paramref name="item1" />, <paramref name="item2" />, <paramref name="item3" />).</returns>
// Token: 0x06000414 RID: 1044 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000414")]
[Address(RVA = "0x17773A0", Offset = "0x17761A0", VA = "0x1817773A0")]
public static Tuple<T1, T2, T3> Create<T1, T2, T3>(T1 item1, T2 item2, T3 item3)
{
return null;
}
// Token: 0x06000415 RID: 1045 RVA: 0x00003E88 File Offset: 0x00002088
[Token(Token = "0x6000415")]
[Address(RVA = "0x26C05C0", Offset = "0x26BF3C0", VA = "0x1826C05C0")]
internal static int CombineHashCodes(int h1, int h2)
{
return 0;
}
// Token: 0x06000416 RID: 1046 RVA: 0x00003EA0 File Offset: 0x000020A0
[Token(Token = "0x6000416")]
[Address(RVA = "0x327DF00", Offset = "0x327CD00", VA = "0x18327DF00")]
internal static int CombineHashCodes(int h1, int h2, int h3)
{
return 0;
}
// Token: 0x06000417 RID: 1047 RVA: 0x00003EB8 File Offset: 0x000020B8
[Token(Token = "0x6000417")]
[Address(RVA = "0x327DF10", Offset = "0x327CD10", VA = "0x18327DF10")]
internal static int CombineHashCodes(int h1, int h2, int h3, int h4)
{
return 0;
}
}
}