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,27 @@
using System;
using Cpp2IlInjected;
namespace System.Runtime.CompilerServices
{
/// <summary>Defines a property for accessing the value that an object references.</summary>
// Token: 0x02000266 RID: 614
[Token(Token = "0x2000266")]
public interface IStrongBox
{
/// <summary>Gets or sets the value that an object references.</summary>
/// <returns>The value that the object references.</returns>
// Token: 0x17000271 RID: 625
// (get) Token: 0x06000C53 RID: 3155
// (set) Token: 0x06000C54 RID: 3156
[Token(Token = "0x17000271")]
object Value
{
[Token(Token = "0x6000C53")]
[Address(Slot = "0")]
get;
[Token(Token = "0x6000C54")]
[Address(Slot = "1")]
set;
}
}
}