Attempts to convert a string value to a
BigFloat.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static bool TryParse(
string s,
AccuracyGoal accuracyGoal,
out BigFloat value
)
Public Shared Function TryParse (
s As String,
accuracyGoal As AccuracyGoal,
<OutAttribute> ByRef value As BigFloat
) As Boolean
public:
static bool TryParse(
String^ s,
AccuracyGoal accuracyGoal,
[OutAttribute] BigFloat^% value
)
static member TryParse :
s : string *
accuracyGoal : AccuracyGoal *
value : BigFloat byref -> bool
Parameters
- s
- Type: SystemString
The string to convert. - accuracyGoal
- Type: Extreme.MathematicsAccuracyGoal
The AccuracyGoal for the parsed value. - value
- Type: Extreme.MathematicsBigFloat
On return, the converted value.
Return Value
Type:
Boolean if the conversion was successful; otherwise
.
Reference