BigFloat.Parse(String, NumberStyles) Method

Converts a string value to a BigFloat.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static BigFloat Parse(
	string value,
	NumberStyles style
)

Parameters

value  String
The string to convert.
style  NumberStyles
A NumberStyles value that specifies the allowed formats of the string.

Return Value

BigFloat
The BigFloat value represented by value.

Exceptions

FormatExceptionvalue does not contain a valid floating-point value.
ArgumentNullExceptionvalue is null.

See Also