using System; namespace System.Runtime.CompilerServices { /// Defines a property for accessing the value that an object references. /// 2 // Token: 0x0200004C RID: 76 public interface IStrongBox { /// Gets or sets the value that an object references. /// The value that the object references. // Token: 0x17000046 RID: 70 // (get) Token: 0x06000453 RID: 1107 // (set) Token: 0x06000454 RID: 1108 object Value { get; set; } } }