Click or drag to resize
IndexedItemTEquality Operator
Compares the index of leftHandSideObject and rightHandSideObject, if index of leftHandSideObject is equal to the index of rightHandSideObject then returns true else returns false. Note that this method will compare only index and will not compare Item property.

Namespace: Bio
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
public static bool operator ==(
	IndexedItem<T> leftHandSideObject,
	IndexedItem<T> rightHandSideObject
)

Parameters

leftHandSideObject
Type: BioIndexedItemT
An instance of IndexedItem as first operand.
rightHandSideObject
Type: BioIndexedItemT
An instance of IndexedItem as second operand.

Return Value

Type: Boolean
Returns true if index of leftHandSideObject is equal to the index of rightHandSideObject, else returns false.
See Also