StringSet Constructor (String, Char) |
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 blank and null items are skipped.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public StringSet(
string list,
char separator
)
Public Sub New (
list As String,
separator As Char
)
Parameters
- list
- Type: SystemString
The separator-separated list of items. - separator
- Type: SystemChar
The separator character.
See Also