Overrides MfListBase.Contains
OutputVar := instance.Contains(obj)
Determines whether the MfGenericList contains a specific element.
obj
The Object to locate in the MfGenericList
Returns var with value of true if the MfGenericList contains the specified value otherwise, false.
Throws MfNullReferenceException if called as a static method.
Throws MfNotSupportedException if obj is not correct type for this instance.
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().