VoltDB.Data.Client.VoltDecimal.MovePointLeft C# (CSharp) Méthode

MovePointLeft() public méthode

Moves the decimal point to the left (essentially: divide by 10^n)
public MovePointLeft ( int n ) : VoltDecimal
n int Number of digits to shift by.
Résultat VoltDecimal
        public VoltDecimal MovePointLeft(int n)
        {
            return new VoltDecimal(this.Value.MovePointLeft(n));
        }