Determines whether the MfListBase contains a specific element.
OutputVar := instance.Contains(obj)
Determines whether the MfListBase contains a specific element.
value
The Object to locate in the MfListBase
Returns true if the MfListBase contains the specified value otherwise, false.
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.