Contains()

Namespace ›› System ›› MfGenericList ›› Methods ››
Parent Previous Next

Contains()

Overrides MfListBase.Contains

OutputVar := instance.Contains(obj)

Contains(obj)

Determines whether the MfGenericList contains a specific element.

Parameters

obj

The Object to locate in the MfGenericList

Returns

Returns var with value of true if the MfGenericList contains the specified value otherwise, false.

Throws

Throws MfNullReferenceException if called as a static method.
Throws MfNotSupportedException if obj is not correct type for this instance.

Remarks

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().