Add to string lists

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

Syntax

C#
public static StringList operator +(
	StringList l,
	StringList r
)
Visual Basic
Public Shared Operator + ( _
	l As StringList, _
	r As StringList _
) As StringList
Visual C++
public:
static StringList^ operator +(
	StringList^ l, 
	StringList^ r
)

Parameters

l
Type: Perforce.P4..::..StringList
The left list
r
Type: Perforce.P4..::..StringList
The right list

Return Value

A new list consisting of the elements of the left list followed by the elements of the right list

See Also