This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+55
View File
@@ -0,0 +1,55 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// <summary>Represents a variable-length argument list; that is, the parameters of a function that takes a variable number of arguments.</summary>
// Token: 0x0200016E RID: 366
[Token(Token = "0x200016E")]
[StructLayout(3)]
public struct ArgIterator
{
/// <summary>This method is not supported, and always throws <see cref="T:System.NotSupportedException" />.</summary>
/// <param name="o">An object to be compared to this instance.</param>
/// <returns>This comparison is not supported. No value is returned.</returns>
/// <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
// Token: 0x06000F19 RID: 3865 RVA: 0x0000C8E8 File Offset: 0x0000AAE8
[Token(Token = "0x6000F19")]
[Address(RVA = "0x2D02A70", Offset = "0x2D01A70", VA = "0x182D02A70", Slot = "0")]
public override bool Equals(object o)
{
return default(bool);
}
/// <summary>Returns the hash code of this object.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// Token: 0x06000F1A RID: 3866 RVA: 0x0000C900 File Offset: 0x0000AB00
[Token(Token = "0x6000F1A")]
[Address(RVA = "0x592FE0", Offset = "0x591FE0", VA = "0x180592FE0", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
// Token: 0x04000609 RID: 1545
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000609")]
private IntPtr sig;
// Token: 0x0400060A RID: 1546
[global::Cpp2IlInjected.FieldOffset(Offset = "0x8")]
[Token(Token = "0x400060A")]
private IntPtr args;
// Token: 0x0400060B RID: 1547
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x400060B")]
private int next_arg;
// Token: 0x0400060C RID: 1548
[global::Cpp2IlInjected.FieldOffset(Offset = "0x14")]
[Token(Token = "0x400060C")]
private int num_args;
}
}