Test to see if two StringList are equal. They are equal if they have the same elements in the same order.

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

Syntax

C#
public static bool operator ==(
	StringList l1,
	StringList l2
)
Visual Basic
Public Shared Operator = ( _
	l1 As StringList, _
	l2 As StringList _
) As Boolean
Visual C++
public:
static bool operator ==(
	StringList^ l1, 
	StringList^ l2
)

Parameters

l1
Type: Perforce.P4..::..StringList
The first list
l2
Type: Perforce.P4..::..StringList
The second list

Return Value

true if equal

See Also