LastIndexOf()

Namespace ›› System ›› MfListBase ›› Methods ››
Parent Previous Next

LastIndexOf()

Searches for the specified object or var and returns the index of the last occurrence within the entire instance.

OutputVar := instance.IndexOf(obj)

LastIndexOf(obj)

Searches for the specified object or var and returns the index of the last occurrence within the entire instance.

Parameters

obj

The object to locate in the MfListBase

Returns

Returns  index of the last occurrence of value within the entire instance.

Throws

Throws MfNullReferenceException if called as a static method.

Since

0.4

Remarks

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

If Element is derived from MfObject then his method determines equality by calling MfObject.CompareTo().
If Element is var then is compared using case insensitive = operator.
If Element is any other kind of object then it is ignored.

Can be overridden in derived classes.