Property Separator
Separator
Gets or sets a string containing a separator character with optional leading and trailing whitespace to be used for flags enumerations. Ignored for
non-flags enumerations. Defaults to ", " (comma followed by a space).
Declaration
public string Separator { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Remarks
The separator must contain a separator character with optional leading and trailing whitespace. The whitespace is used for formatting when a value is
converted to a string, but any whitespace is optional when parsing a string. The separator character cannot be a hyphen ('-').
If the separator string contains only whitespace, then it must either consist of a single distinct whitespace character (repeated as many times as desired for formatting), or it must contain a newline character, in which case the newline character will be used as the parsing separator character regardless of what other whitespace it contains.