Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

42 lines
1.6 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Reflection.Emit
{
/// <summary>Represents a label in the instruction stream. <see langword="Label" /> is used in conjunction with the <see cref="T:System.Reflection.Emit.ILGenerator" /> class.</summary>
// Token: 0x02000274 RID: 628
[Token(Token = "0x2000274")]
[ComVisible(true)]
[Serializable]
public struct Label
{
/// <summary>Checks if the given object is an instance of <see langword="Label" /> and is equal to this instance.</summary>
/// <param name="obj">The object to compare with this <see langword="Label" /> instance.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="obj" /> is an instance of <see langword="Label" /> and is equal to this object; otherwise, <see langword="false" />.</returns>
// Token: 0x060016C7 RID: 5831 RVA: 0x00010080 File Offset: 0x0000E280
[Token(Token = "0x60016C7")]
[Address(RVA = "0x30BA320", Offset = "0x30B9320", VA = "0x1830BA320", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Generates a hash code for this instance.</summary>
/// <returns>A hash code for this instance.</returns>
// Token: 0x060016C8 RID: 5832 RVA: 0x00010098 File Offset: 0x0000E298
[Token(Token = "0x60016C8")]
[Address(RVA = "0x592FE0", Offset = "0x591FE0", VA = "0x180592FE0", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
// Token: 0x04000B88 RID: 2952
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000B88")]
internal int label;
}
}