Searches for the specified object or var and returns the index of the last occurrence within the entire instance.
OutputVar := instance.IndexOf(obj)
Searches for the specified object or var and returns the index of the last occurrence within the entire instance.
obj
The object to locate in the MfListBase
Returns index of the last occurrence of value within the entire instance.
Throws MfNullReferenceException if called as a static method.
0.4
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.