IndexedItemTEquals Method (IndexedItemT) |
Returns a value indicating whether this instance is equal to a specified IndexedItem.
Note that this method compares both Index and Item. If both Index and Item of this instance and
other are equal then it returns true, else returns false.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public bool Equals(
IndexedItem<T> other
)
Public Function Equals (
other As IndexedItem(Of T)
) As Boolean
public:
bool Equals(
IndexedItem<T>^ other
)
member Equals :
other : IndexedItem<'T> -> bool
Parameters
- other
- Type: BioIndexedItemT
IndexedItem instance to compare.
Return Value
Type:
BooleanReturns true if other has the same index and item values as of this instance;
otherwise, false.
See Also