19 lines
709 B
Plaintext
19 lines
709 B
Plaintext
|
// ==++==
|
||
|
//
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//
|
||
|
// ==--==
|
||
|
namespace System.Runtime.CompilerServices
|
||
|
{
|
||
|
//| <include file='doc\DecimalConstantAttribute.uex' path='docs/doc[@for="DecimalConstantAttribute"]/*' />
|
||
|
[AttributeUsage(AttributeTargets.Field |
|
||
|
AttributeTargets.Parameter, Inherited=false)]
|
||
|
[CLSCompliant(false)]
|
||
|
public sealed class DecimalConstantAttribute : Attribute
|
||
|
{
|
||
|
//| <include file='doc\DecimalConstantAttribute.uex' path='docs/doc[@for="DecimalConstantAttribute.DecimalConstantAttribute"]/*' />
|
||
|
public DecimalConstantAttribute(byte scale, byte sign, uint hi, uint mid, uint low);
|
||
|
}
|
||
|
}
|
||
|
|