VoltDB.ThirdParty.Math.BigDecimal.MovePointLeft C# (CSharp) 메소드

MovePointLeft() 공개 메소드

public MovePointLeft ( int n ) : BigDecimal
n int
리턴 BigDecimal
        public BigDecimal MovePointLeft(int n)
        {
            if (n >= 0)
                return new BigDecimal(_BigIntegerNumber, _Scale + n);
            else
                return MovePointRight(-n);
        }