| PairTFirst, TSecondEquality Operator |
Namespace: DigitalRune.CollectionsAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax public static bool operator ==(
Pair<TFirst, TSecond> pair1,
Pair<TFirst, TSecond> pair2
)
Public Shared Operator = (
pair1 As Pair(Of TFirst, TSecond),
pair2 As Pair(Of TFirst, TSecond)
) As Boolean
public:
static bool operator ==(
Pair<TFirst, TSecond> pair1,
Pair<TFirst, TSecond> pair2
)
static let inline (=)
pair1 : Pair<'TFirst, 'TSecond> *
pair2 : Pair<'TFirst, 'TSecond> : bool
Parameters
- pair1
- Type: DigitalRune.CollectionsPairTFirst, TSecond
The first pair. - pair2
- Type: DigitalRune.CollectionsPairTFirst, TSecond
The second pair.
Return Value
Type:
Boolean if the
pair1 and
pair2 are the
same; otherwise,
.
See Also