Click or drag to resize

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
)

Parameters

text
Type: SystemString
A text representation of the permutation.
output
Type: Meta.Numerics.FunctionsPermutation
The corresponding permutation.

Return Value

Type: Boolean
True if the conversion succeeded, otherwise false.
Remarks

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

See Also