| RecordIndexEntryEquality Operator |
Determines whether two specified instances have the same value.
Namespace:
Ookii.Jumbo.IO
Assembly:
Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax public static bool operator ==(
RecordIndexEntry left,
RecordIndexEntry right
)
Public Shared Operator = (
left As RecordIndexEntry,
right As RecordIndexEntry
) As Boolean
public:
static bool operator ==(
RecordIndexEntry left,
RecordIndexEntry right
)
static let inline (=)
left : RecordIndexEntry *
right : RecordIndexEntry : bool
Parameters
- left
- Type: Ookii.Jumbo.IORecordIndexEntry
The first instance to compare. - right
- Type: Ookii.Jumbo.IORecordIndexEntry
The second instance to compare.
Return Value
Type:
Boolean if the value of
left is the same as the value of
right; otherwise,
.
See Also