This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 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: 0x0200026E RID: 622
[Token(Token = "0x200026E")]
[ComVisible(true)]
[ClassInterface(ClassInterfaceType.None)]
[StructLayout(0)]
public sealed class LocalBuilder : LocalVariableInfo
{
// Token: 0x04000B7F RID: 2943
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000B7F")]
private string name;
// Token: 0x04000B80 RID: 2944
[global::Cpp2IlInjected.FieldOffset(Offset = "0x28")]
[Token(Token = "0x4000B80")]
internal ILGenerator ilgen;
// Token: 0x04000B81 RID: 2945
[global::Cpp2IlInjected.FieldOffset(Offset = "0x30")]
[Token(Token = "0x4000B81")]
private int startOffset;
// Token: 0x04000B82 RID: 2946
[global::Cpp2IlInjected.FieldOffset(Offset = "0x34")]
[Token(Token = "0x4000B82")]
private int endOffset;
}
}