Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Reflection/LocalVariableInfo.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x0200024D RID: 589
[Token(Token = "0x200024D")]
[ComVisible(true)]
[StructLayout(0)]
public class LocalVariableInfo
{
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.LocalVariableInfo" /> class.</summary>
// Token: 0x06001533 RID: 5427 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001533")]
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
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: 0x06001534 RID: 5428 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6001534")]
[Address(RVA = "0x30BA3B0", Offset = "0x30B93B0", VA = "0x1830BA3B0", Slot = "3")]
public override string ToString()
{
return null;
}
// Token: 0x04000B37 RID: 2871
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000B37")]
internal Type type;
// Token: 0x04000B38 RID: 2872
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000B38")]
internal bool is_pinned;
// Token: 0x04000B39 RID: 2873
[global::Cpp2IlInjected.FieldOffset(Offset = "0x1A")]
[Token(Token = "0x4000B39")]
internal ushort position;
}
}