PermutationTryParse Method

Attempts to convert a text representation into a permutation.

Definition

Namespace: Meta.Numerics.Functions
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public static bool TryParse(
	string text,
	out Permutation output
)

Parameters

text  String
A text representation of the permutation.
output  Permutation
The corresponding permutation.

Return Value

Boolean
True if the conversion succeeded, otherwise false.

Remarks

For information on supported text representations, see Parse(String).

See Also