Files
Dec2017-Script-Dump/System.Core/System/Runtime/CompilerServices/IStrongBox.cs
T
2026-06-04 11:42:34 +02:00

18 lines
539 B
C#

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; }
}
}