Click or drag to resize

StringList Constructor (String, Char, SplitOptions)

Contruct the set from a separator-separated list of items. For example, adding "a;b;c" with ';' separator adds 3 items, "a", "b", "c". Note that opts can be used to trim and/or include blank and null items.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public StringList(
	string list,
	char separator,
	SplitOptions opts = 
)

Parameters

list
Type: SystemString
The separator-separated list of items.
separator
Type: SystemChar
The separator character.
opts (Optional)
Type: NetQuarrySplitOptions
Options specifying how to split the input string.
See Also