IndexOf()

Namespace ›› System ›› MfCollectionBase ›› Methods ››
Parent Previous Next

IndexOf()

OutputVar := instance.IndexOf(obj)

IndexOf(obj)

Searches for the specified Object and returns the zero-based index of the first occurrence within the entire MfCollectionBase.

Parameters

obj

The object to locate in the MfCollectionBase

Returns

Returns var containing an Integer that is a zero-based index of the first occurrence of obj within the entire MfCollectionBase, if found; Oherwise Integer with a value of -1.

Throws

Throws MfNullReferenceException if called as a static method.

Remarks

This method performs a linear search; therefore, this method is an O(n) operation, where n is Count.

This method determines equality by calling MfObject.CompareTo().