BigFloat.TryParse(String, BigFloat) Method

Attempts to convert a string value to a BigFloat.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static bool TryParse(
	string s,
	out BigFloat value
)

Parameters

s  String
The string to convert.
value  BigFloat
On return, the converted value.

Return Value

Boolean
true if the conversion was successful; otherwise false.

Exceptions

ArgumentNullExceptionvalue is null.

See Also