Struct MathHelper.DecimalInfo
Represents detailed information about a decimal value.
public struct MathHelper.DecimalInfo
- Inherited Members
- Extension Methods
Fields
Mantissa
The underlying mantissa of the decimal.
public long Mantissa
Field Value
Precision
The total number of digits in the decimal.
public int Precision
Field Value
Scale
The scale (number of digits after the decimal point) of the decimal.
public int Scale
Field Value
TrailingZeros
The count of trailing zeros in the decimal.
public int TrailingZeros
Field Value
Properties
EffectiveScale
Gets the effective scale (scale minus trailing zeros) of the decimal.
public int EffectiveScale { get; }