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
)
Public Shared Function TryParse (
s As String,
<OutAttribute> ByRef x As DoubleDouble
) As Boolean
public:
static bool TryParse(
String^ s,
[OutAttribute] DoubleDouble% x
)
static member TryParse :
s : string *
x : DoubleDouble byref -> bool
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:
BooleanTrue if the string was successfully parsed, false otherwise.
Remarks Double double supports the same string representations as
Double.
See Also