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

MovePointRight() public méthode

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