DecimalConstantAttribute 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 DecimalConstantAttribute 类的新实例。
重载
DecimalConstantAttribute(Byte, Byte, Int32, Int32, Int32) |
使用指定的有符号整数值初始化 DecimalConstantAttribute 类的新实例。 |
DecimalConstantAttribute(Byte, Byte, UInt32, UInt32, UInt32) |
使用指定的无符号整数值初始化 DecimalConstantAttribute 类的新实例。 |
DecimalConstantAttribute(Byte, Byte, Int32, Int32, Int32)
- Source:
- DecimalConstantAttribute.cs
- Source:
- DecimalConstantAttribute.cs
- Source:
- DecimalConstantAttribute.cs
使用指定的有符号整数值初始化 DecimalConstantAttribute 类的新实例。
public:
DecimalConstantAttribute(System::Byte scale, System::Byte sign, int hi, int mid, int low);
public DecimalConstantAttribute (byte scale, byte sign, int hi, int mid, int low);
new System.Runtime.CompilerServices.DecimalConstantAttribute : byte * byte * int * int * int -> System.Runtime.CompilerServices.DecimalConstantAttribute
Public Sub New (scale As Byte, sign As Byte, hi As Integer, mid As Integer, low As Integer)
参数
- scale
- Byte
刻度因子(10 的幂),指示小数点右边的数字位数。 有效值为从 0 到 28(含)。
- sign
- Byte
值 0 指示正值,值 1 指示负值。
适用于
DecimalConstantAttribute(Byte, Byte, UInt32, UInt32, UInt32)
- Source:
- DecimalConstantAttribute.cs
- Source:
- DecimalConstantAttribute.cs
- Source:
- DecimalConstantAttribute.cs
重要
此 API 不符合 CLS。
使用指定的无符号整数值初始化 DecimalConstantAttribute 类的新实例。
public:
DecimalConstantAttribute(System::Byte scale, System::Byte sign, System::UInt32 hi, System::UInt32 mid, System::UInt32 low);
[System.CLSCompliant(false)]
public DecimalConstantAttribute (byte scale, byte sign, uint hi, uint mid, uint low);
public DecimalConstantAttribute (byte scale, byte sign, uint hi, uint mid, uint low);
[<System.CLSCompliant(false)>]
new System.Runtime.CompilerServices.DecimalConstantAttribute : byte * byte * uint32 * uint32 * uint32 -> System.Runtime.CompilerServices.DecimalConstantAttribute
new System.Runtime.CompilerServices.DecimalConstantAttribute : byte * byte * uint32 * uint32 * uint32 -> System.Runtime.CompilerServices.DecimalConstantAttribute
Public Sub New (scale As Byte, sign As Byte, hi As UInteger, mid As UInteger, low As UInteger)
参数
- scale
- Byte
刻度因子(10 的幂),指示小数点右边的数字位数。 有效值为从 0 到 28(含)。
- sign
- Byte
值 0 指示正值,值 1 指示负值。
- 属性
例外
scale
> 28。