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
'Declaración
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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.TeamFoundation.Build.Workflow.Activities Namespace