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
@@ -0,0 +1,35 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Reflection.Emit
{
/// <summary>Represents a local variable within a method or constructor.</summary>
// Token: 0x02000275 RID: 629
[Token(Token = "0x2000275")]
[ComVisible(true)]
[ClassInterface(ClassInterfaceType.None)]
[StructLayout(0)]
public sealed class LocalBuilder : LocalVariableInfo
{
// Token: 0x04000B89 RID: 2953
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000B89")]
private string name;
// Token: 0x04000B8A RID: 2954
[global::Cpp2IlInjected.FieldOffset(Offset = "0x28")]
[Token(Token = "0x4000B8A")]
internal ILGenerator ilgen;
// Token: 0x04000B8B RID: 2955
[global::Cpp2IlInjected.FieldOffset(Offset = "0x30")]
[Token(Token = "0x4000B8B")]
private int startOffset;
// Token: 0x04000B8C RID: 2956
[global::Cpp2IlInjected.FieldOffset(Offset = "0x34")]
[Token(Token = "0x4000B8C")]
private int endOffset;
}
}