Overrides MfListBase.LastIndexOf()
OutputVar := instance.LastIndexOf(obj)
Searches for the specified Object and returns the zero-based index of the Last occurrence within the entire MfGenericList.
obj
The object to locate in the MfGenericList
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 MfNullReferenceException if called as a static method.
Throws MfNotSupportedException if obj is not correct type for this instance.
0.4
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().