Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

48 lines
1.6 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Reflection
{
/// <summary>Discovers the attributes of a local variable and provides access to local variable metadata.</summary>
// Token: 0x02000246 RID: 582
[Token(Token = "0x2000246")]
[ComVisible(true)]
[StructLayout(0)]
public class LocalVariableInfo
{
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.LocalVariableInfo" /> class.</summary>
// Token: 0x060014F4 RID: 5364 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60014F4")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
protected LocalVariableInfo()
{
}
/// <summary>Returns a user-readable string that describes the local variable.</summary>
/// <returns>A string that displays information about the local variable, including the type name, index, and pinned status.</returns>
// Token: 0x060014F5 RID: 5365 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60014F5")]
[Address(RVA = "0x2A08560", Offset = "0x2A07360", VA = "0x182A08560", Slot = "3")]
public override string ToString()
{
return null;
}
// Token: 0x04000B2D RID: 2861
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000B2D")]
internal Type type;
// Token: 0x04000B2E RID: 2862
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000B2E")]
internal bool is_pinned;
// Token: 0x04000B2F RID: 2863
[global::Cpp2IlInjected.FieldOffset(Offset = "0x1A")]
[Token(Token = "0x4000B2F")]
internal ushort position;
}
}