Files
Aug2021-Cpp2IL-Dump/mscorlib/System/ArgIterator.cs
T
2026-04-10 22:50:51 +02:00

56 lines
1.9 KiB
C#

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: 0x02000167 RID: 359
[Token(Token = "0x2000167")]
[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: 0x06000EE3 RID: 3811 RVA: 0x0000C5D0 File Offset: 0x0000A7D0
[Token(Token = "0x6000EE3")]
[Address(RVA = "0x26BED80", Offset = "0x26BDB80", VA = "0x1826BED80", 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: 0x06000EE4 RID: 3812 RVA: 0x0000C5E8 File Offset: 0x0000A7E8
[Token(Token = "0x6000EE4")]
[Address(RVA = "0x164A950", Offset = "0x1649750", VA = "0x18164A950", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
// Token: 0x040005FF RID: 1535
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40005FF")]
private IntPtr sig;
// Token: 0x04000600 RID: 1536
[global::Cpp2IlInjected.FieldOffset(Offset = "0x8")]
[Token(Token = "0x4000600")]
private IntPtr args;
// Token: 0x04000601 RID: 1537
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000601")]
private int next_arg;
// Token: 0x04000602 RID: 1538
[global::Cpp2IlInjected.FieldOffset(Offset = "0x14")]
[Token(Token = "0x4000602")]
private int num_args;
}
}