DoubleDoubleTryParse Method

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

Definition

Namespace: Meta.Numerics.Extended
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public static bool TryParse(
	string s,
	out DoubleDouble x
)

Parameters

s  String
The string representation of the value.
x  DoubleDouble
The value, if the parse was successful.

Return Value

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

Remarks

Double double supports the same string representations as Double.

See Also