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