This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,17 @@
using System;
namespace System.Runtime.CompilerServices
{
/// <summary>Defines a property for accessing the value that an object references.</summary>
/// <filterpriority>2</filterpriority>
// Token: 0x0200004C RID: 76
public interface IStrongBox
{
/// <summary>Gets or sets the value that an object references.</summary>
/// <returns>The value that the object references.</returns>
// Token: 0x17000046 RID: 70
// (get) Token: 0x06000453 RID: 1107
// (set) Token: 0x06000454 RID: 1108
object Value { get; set; }
}
}