BigFloat.Parse(String, AccuracyGoal, IFormatProvider) 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,
	AccuracyGoal accuracyGoal,
	IFormatProvider provider
)

Parameters

value  String
The string to convert.
accuracyGoal  AccuracyGoal
The AccuracyGoal for the parsed value.
provider  IFormatProvider
An IFormatProvider that specifies how the string should be interpreted.

Return Value

BigFloat
The BigFloat value represented by value.

Exceptions

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

See Also