Interface IDecimal
Represents the decimal field type.
Namespace: OnixS.SimpleBinaryEncoding
Assembly: OnixS.SimpleBinaryEncoding.dll
Syntax
public interface IDecimal : IComposite, IComparable<IDecimal>
Properties
Exponent
Gets exponent.
Declaration
System.SByte Exponent { get; set; }
Property Value
Type | Description |
---|---|
System.SByte |
Mantissa
Gets mantissa.
Declaration
long Mantissa { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
Value
Gets decimal value.
Declaration
decimal Value { get; set; }
Property Value
Type | Description |
---|---|
System.Decimal |