AddFromDelimitedList Method
In This Topic
Adds entries from a delimited list
Syntax
'Declaration
Public Sub AddFromDelimitedList( _
ByVal As String, _
ByVal As Boolean, _
ByVal ParamArray () As Char _
)
public void AddFromDelimitedList(
string ,
bool ,
params char[]
)
Parameters
- source
- The source string to add from. Must contain a list of values, separated by any of the
- clearFirst
- If true the collection is cleared before the new items are added. If false the new items are added to the existing collection.
- delimiters
- The delimiters used to separate values in
See Also