[This is preliminary documentation and is subject to change.]

Cast a string array to a string list

Namespace: Perforce.P4
Assembly: p4api.net (in p4api.net.dll) Version: 2012.2.63.1250 (2012.2.63.1250)

Syntax

C#
public static implicit operator StringList (
	string[] l
)
Visual Basic
Public Shared Widening Operator CType ( _
	l As String() _
) As StringList
Visual C++
static implicit operator StringList^ (
	array<String^>^ l
)

Parameters

l
Type: array<System..::..String>[]()[][]
The list to cast

Return Value

New StringList representing the results of the cast

See Also