This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
+107
View File
@@ -0,0 +1,107 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Reflection.Emit
{
/// <summary>Describes an intermediate language (IL) instruction.</summary>
// Token: 0x02000271 RID: 625
[Token(Token = "0x2000271")]
[ComVisible(true)]
public struct OpCode
{
// Token: 0x06001699 RID: 5785 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001699")]
[Address(RVA = "0x2A11160", Offset = "0x2A0FF60", VA = "0x182A11160")]
internal OpCode(int p, int q)
{
}
/// <summary>Returns the generated hash code for this <see langword="Opcode" />.</summary>
/// <returns>The hash code for this instance.</returns>
// Token: 0x0600169A RID: 5786 RVA: 0x0000FDB0 File Offset: 0x0000DFB0
[Token(Token = "0x600169A")]
[Address(RVA = "0x2A11120", Offset = "0x2A0FF20", VA = "0x182A11120", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Tests whether the given object is equal to this <see langword="Opcode" />.</summary>
/// <param name="obj">The object to compare to this object.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="obj" /> is an instance of <see langword="Opcode" /> and is equal to this object; otherwise, <see langword="false" />.</returns>
// Token: 0x0600169B RID: 5787 RVA: 0x0000FDC8 File Offset: 0x0000DFC8
[Token(Token = "0x600169B")]
[Address(RVA = "0x2A11090", Offset = "0x2A0FE90", VA = "0x182A11090", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Returns this <see langword="Opcode" /> as a <see cref="T:System.String" />.</summary>
/// <returns>A string containing the name of this <see langword="Opcode" />.</returns>
// Token: 0x0600169C RID: 5788 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600169C")]
[Address(RVA = "0x2A11150", Offset = "0x2A0FF50", VA = "0x182A11150", Slot = "3")]
public override string ToString()
{
return null;
}
/// <summary>The name of the intermediate language (IL) instruction.</summary>
/// <returns>Read-only. The name of the IL instruction.</returns>
// Token: 0x170002A3 RID: 675
// (get) Token: 0x0600169D RID: 5789 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170002A3")]
public string Name
{
[Token(Token = "0x600169D")]
[Address(RVA = "0x2A111A0", Offset = "0x2A0FFA0", VA = "0x182A111A0")]
get
{
return null;
}
}
// Token: 0x04000B83 RID: 2947
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000B83")]
internal byte op1;
// Token: 0x04000B84 RID: 2948
[global::Cpp2IlInjected.FieldOffset(Offset = "0x1")]
[Token(Token = "0x4000B84")]
internal byte op2;
// Token: 0x04000B85 RID: 2949
[global::Cpp2IlInjected.FieldOffset(Offset = "0x2")]
[Token(Token = "0x4000B85")]
private byte push;
// Token: 0x04000B86 RID: 2950
[global::Cpp2IlInjected.FieldOffset(Offset = "0x3")]
[Token(Token = "0x4000B86")]
private byte pop;
// Token: 0x04000B87 RID: 2951
[global::Cpp2IlInjected.FieldOffset(Offset = "0x4")]
[Token(Token = "0x4000B87")]
private byte size;
// Token: 0x04000B88 RID: 2952
[global::Cpp2IlInjected.FieldOffset(Offset = "0x5")]
[Token(Token = "0x4000B88")]
private byte type;
// Token: 0x04000B89 RID: 2953
[global::Cpp2IlInjected.FieldOffset(Offset = "0x6")]
[Token(Token = "0x4000B89")]
private byte args;
// Token: 0x04000B8A RID: 2954
[global::Cpp2IlInjected.FieldOffset(Offset = "0x7")]
[Token(Token = "0x4000B8A")]
private byte flow;
}
}