Java.Math.BigDecimal.ScaleByPowerOfTen Method
Returns a new BigDecimal whose value is this * 10n.

Syntax

[Android.Runtime.Register("scaleByPowerOfTen", "(I)Ljava/math/BigDecimal;", "GetScaleByPowerOfTen_IHandler")]
public virtual BigDecimal ScaleByPowerOfTen (int n)

Parameters

n
Documentation for this section has not yet been entered.

Returns

Documentation for this section has not yet been entered.

Remarks

Returns a new BigDecimal whose value is this * 10n. The scale of the result is this.scale() - n. The precision of the result is the precision of this.

This method has the same effect as BigDecimal.MovePointRight(int), except that the precision is not changed.

[Android Documentation]

Requirements

Namespace: Java.Math
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1