Contains()

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

Contains()

Determines whether the MfListBase contains a specific element.

OutputVar := instance.Contains(obj)

Contains(obj)

Determines whether the MfListBase contains a specific element.

Parameters

value

The Object to locate in the MfListBase

Returns

Returns true if the MfListBase contains the specified value otherwise, false.

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.