Click or drag to resize

DoubleDoubleTryParse Method

Attempts to parse a string representation of a double double value.

Namespace:  Meta.Numerics.Extended
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public static bool TryParse(
	string s,
	out DoubleDouble x
)

Parameters

s
Type: SystemString
The string representation of the value.
x
Type: Meta.Numerics.ExtendedDoubleDouble
The value, if the parse was successful.

Return Value

Type: Boolean
True if the string was successfully parsed, false otherwise.
Remarks

Double double supports the same string representations as Double.

See Also