StringSetAdd Method |
Name | Description | |
---|---|---|
Add(IList) |
Add items from a list of items.
| |
Add(Object) |
Add a new item to the set. Note that the item must be a string,
be convertable to a string using value.ToString(), or be null/DBNull.
| |
Add(String) |
Add a string to the set if not already there.
| |
Add(String) |
Add items from an array of strings.
Note that blank and null items are skipped.
| |
Add(StringSet) |
Add items from the provide set of strings into this set.
Note that blank and null items are skipped.
| |
Add(String, Char) |
Add items 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.
| |
Add(String, Char, SplitOptions) |
Add items 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.
|