  | RecordIndexEntryEquality Operator | 
            Determines whether two specified instances have the same value.
            
Namespace: Ookii.Jumbo.IOAssembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic 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  : boolParameters
- left  RecordIndexEntry
 - The first instance to compare.
 - right  RecordIndexEntry
 - The second instance to compare.
 
Return Value
Boolean if the value of 
left is the same as the value of 
right; otherwise, 
. 
            
See Also