VoltDB.Data.Client.VoltDecimal.MovePointRight C# (CSharp) Method

MovePointRight() public method

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.
return VoltDecimal
        public VoltDecimal MovePointRight(int n)
        {
            return new VoltDecimal(this.Value.MovePointRight(n));
        }