15 lines
425 B
Plaintext
15 lines
425 B
Plaintext
// ==++==
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// ==--==
|
|
namespace System.Runtime.CompilerServices
|
|
{
|
|
//| <include file='doc\CustomConstantAttribute.uex' path='docs/doc[@for="CustomConstantAttribute"]/*' />
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Parameter, Inherited=false)]
|
|
public abstract class CustomConstantAttribute : Attribute
|
|
{
|
|
}
|
|
}
|
|
|