BooleanStatisticsTryParse Method |
Try converting the given string into SufficientStatistics object.
Namespace: Bio.DistributionsAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public static bool TryParse(
string val,
out SufficientStatistics result
)
Public Shared Function TryParse (
val As String,
<OutAttribute> ByRef result As SufficientStatistics
) As Boolean
public:
static bool TryParse(
String^ val,
[OutAttribute] SufficientStatistics^% result
)
static member TryParse :
val : string *
result : SufficientStatistics byref -> bool
Parameters
- val
- Type: SystemString
string to be converted. - result
- Type: Bio.DistributionsSufficientStatistics
SufficentStatistics object which corresponding to the given string.
Return Value
Type:
BooleanWhether string was successfully converted.
See Also