PermutationTryParse Method |
Attempts to convert a text representation into a permutation.
Namespace:
Meta.Numerics.Functions
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static bool TryParse(
string text,
out Permutation output
)
Public Shared Function TryParse (
text As String,
<OutAttribute> ByRef output As Permutation
) As Boolean
public:
static bool TryParse(
String^ text,
[OutAttribute] Permutation^% output
)
static member TryParse :
text : string *
output : Permutation byref -> bool
Parameters
- text
- Type: SystemString
A text representation of the permutation. - output
- Type: Meta.Numerics.FunctionsPermutation
The corresponding permutation.
Return Value
Type:
BooleanTrue if the conversion succeeded, otherwise false.
Remarks For information on supported text representations, see Parse(String).
See Also