Java.Math.BigDecimal.ToPlainString Method
Returns a string representation of this BigDecimal.

Syntax

[Android.Runtime.Register("toPlainString", "()Ljava/lang/String;", "GetToPlainStringHandler")]
public virtual string ToPlainString ()

Returns

Documentation for this section has not yet been entered.

Remarks

Returns a string representation of this BigDecimal. No scientific notation is used. This methods adds zeros where necessary.

If this string representation is used to create a new instance, this instance is generally not identical to this as the precision changes.

x.equals(new BigDecimal(x.toPlainString()) usually returns false.

x.compareTo(new BigDecimal(x.toPlainString()) returns 0.

[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