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 MantissaField Value
Precision
The total number of digits in the decimal.
public int PrecisionField Value
Scale
The scale (number of digits after the decimal point) of the decimal.
public int ScaleField Value
TrailingZeros
The count of trailing zeros in the decimal.
public int TrailingZerosField Value
Properties
EffectiveScale
Gets the effective scale (scale minus trailing zeros) of the decimal.
public int EffectiveScale { get; }