VoltDB.Data.Client.VoltDecimal.MovePointLeft C# (CSharp) Метод

MovePointLeft() публичный Метод

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.
Результат VoltDecimal
        public VoltDecimal MovePointLeft(int n)
        {
            return new VoltDecimal(this.Value.MovePointLeft(n));
        }