HueStringParse Method (String)

Parses a list of hues specified as a string.
public static HueString Parse(
	string value
)

Parameters

valueSystemString
Hue string to parse.

Return Value

HueString

Remarks

This method can parse string representations of a HueString created with the ToString method.

The value is a comma separated list of hues. The default unit is turns in the range [0, 1), but another unit can be specified using the suffixes below:

UnitSuffixExample
Degreesdeg90deg
Radiansrad1.4rad
Gradiansgrad100grad
Turnsturn0.5turn

The values is specified using a period as decimal separator. Use the Parse(String, IFormatProvider) overload to use a localized decimal separator.

See Also

Reference