Click or drag to resize

StringSetAdd Method

Overload List
  NameDescription
Public methodAdd(IList)
Add items from a list of items.
Public methodAdd(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.
Public methodAdd(String)
Add a string to the set if not already there.
Public methodAdd(String)
Add items from an array of strings. Note that blank and null items are skipped.
Public methodAdd(StringSet)
Add items from the provide set of strings into this set. Note that blank and null items are skipped.
Public methodAdd(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.
Public methodAdd(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.
Top
See Also