adTempus API
ArcanaDevelopment.adTempus.Client.Collections Namespace / StringList Class / AddFromDelimitedList Method
The source string to add from. Must contain a list of values, separated by any of the delimiters
If true the collection is cleared before the new items are added. If false the new items are added to the existing collection.
The delimiters used to separate values in source


In This Topic
    AddFromDelimitedList Method
    In This Topic
    Adds entries from a delimited list
    Syntax
    '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
    See Also