'Declaration
Public Sub AddFromDelimitedList( _ ByVal source As String, _ ByVal clearFirst As Boolean, _ ByVal ParamArray delimiters() As Char _ )
public void AddFromDelimitedList( string source, bool clearFirst, params char[] delimiters )
public: void AddFromDelimitedList( String^ source, bool clearFirst, ... array<char>^ delimiters )
Parameters
- source
- The source string to add from. Must contain a list of values, separated by any of the delimiters
- 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 source