SimpleBigDecimal class SimpleBigDecimal Documentation Code public int IntValue { get; } public long LongValue { get; } public int Scale { get; } public SimpleBigDecimal(BigInteger bigInt, int scale) public static SimpleBigDecimal GetInstance(BigInteger val, int scale) public SimpleBigDecimal Add(SimpleBigDecimal b) public SimpleBigDecimal Add(BigInteger b) public SimpleBigDecimal AdjustScale(int newScale) public int CompareTo(SimpleBigDecimal val) public int CompareTo(BigInteger val) public SimpleBigDecimal Divide(SimpleBigDecimal b) public SimpleBigDecimal Divide(BigInteger b) public BigInteger Floor() public SimpleBigDecimal Multiply(SimpleBigDecimal b) public SimpleBigDecimal Multiply(BigInteger b) public SimpleBigDecimal Negate() public BigInteger Round() public SimpleBigDecimal ShiftLeft(int n) public SimpleBigDecimal Subtract(SimpleBigDecimal b) public SimpleBigDecimal Subtract(BigInteger b)