StringList Constructor (String)

Initializes a new instance of the StringList class with the specified comma-separated list.

Namespace:  Microsoft.TeamFoundation.Build.Workflow.Activities
Assembly:  Microsoft.TeamFoundation.Build.Workflow (in Microsoft.TeamFoundation.Build.Workflow.dll)

Syntax

'Declaration
Public Sub New ( _
    list As String _
)
public StringList(
    string list
)
public:
StringList(
    String^ list
)
new : 
        list:string -> StringList
public function StringList(
    list : String
)

Parameters

  • list
    Type: System.String
    A comma-separated list of strings to add to the new StringList instance.

Remarks

This constructor parses the list parameter for strings separated by commas. Each string is added to this StringList instance as an item.

.NET Framework Security

See Also

Reference

StringList Class

StringList Overload

Microsoft.TeamFoundation.Build.Workflow.Activities Namespace