StringListEquality Operator
|
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: 2024.2.269.3570
Syntaxpublic static bool operator ==(
StringList l1,
StringList l2
)
Public Shared Operator = (
l1 As StringList,
l2 As StringList
) As Boolean
public:
static bool operator ==(
StringList^ l1,
StringList^ l2
)
static let inline (=)
l1 : StringList *
l2 : StringList : bool
Parameters
- l1
- Type: Perforce.P4StringList
The first list - l2
- Type: Perforce.P4StringList
The second list
Return Value
Type:
Booleantrue if equal
See Also