IndexedItemTInequality Operator |
Compares the index of leftHandSideObject and rightHandSideObject, if index of leftHandSideObject is
not 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: BioAssembly: 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
)
Public Shared Operator <> (
leftHandSideObject As IndexedItem(Of T),
rightHandSideObject As IndexedItem(Of T)
) As Boolean
public:
static bool operator !=(
IndexedItem<T>^ leftHandSideObject,
IndexedItem<T>^ rightHandSideObject
)
static let inline (<>)
leftHandSideObject : IndexedItem<'T> *
rightHandSideObject : IndexedItem<'T> : bool
Parameters
- leftHandSideObject
- Type: BioIndexedItemT
An instance of IndexedItem as first operand. - rightHandSideObject
- Type: BioIndexedItemT
An instance of IndexedItem as second operand.
Return Value
Type:
BooleanReturns true if index of leftHandSideObject is not equal to the index of rightHandSideObject,
else returns false.
See Also