using System; using System.Runtime.InteropServices; namespace System.Runtime.CompilerServices { /// Defines a constant value that a compiler can persist for a field or method parameter. // Token: 0x02000296 RID: 662 [ComVisible(true)] [AttributeUsage(AttributeTargets.Field | AttributeTargets.Parameter, Inherited = false)] [Serializable] public abstract class CustomConstantAttribute : Attribute { /// Gets the constant value stored by this attribute. /// The constant value stored by this attribute. // Token: 0x1700062B RID: 1579 // (get) Token: 0x060020E6 RID: 8422 public abstract object Value { get; } } }