IndexOf()

Namespace ›› System ›› MfGenericList ›› Methods ››
Parent Previous Next

IndexOf()

Overrides MfListBase.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 MfGenericList.

Parameters

obj

The object to locate in the MfGenericList

Returns

Returns var of Integer of the zero-based index of the first occurrence of obj within the entire MfGenericList, if found; Otherwise, Integer var with a Value of -1.

Throws

Throws MfNullReferenceException if called as a static method.
Throws MfNotSupportedException if obj is not correct type for this instance.

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().