System.Runtime.CompilerServices.CustomConstantAttribute
namespace System.Runtime.CompilerServices
{
public abstract class CustomConstantAttribute : Attribute
{
public abstract object Value { get; }
protected CustomConstantAttribute();
}
}