VoltDB.Data.Client.VoltDecimal.MovePointRight C# (CSharp) 메소드

MovePointRight() 공개 메소드

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