IndexOf()

Namespace ›› System ›› MfByteList ›› Methods ››
Parent Previous Next

IndexOf()

Searches for the specified var or object and returns the index of the first occurrence within the entire instance.
Overrides MfListBase.IndexOf()

OutputVar := instance.IndexOf(obj)

IndexOf(obj)

Searches for the specified var or object and returns the index of the first occurrence within the entire instance.

Parameters

obj

The object or var to locate in the MfByteList
Can be any type that matches IsInteger or var integer.

Returns

Returns  index of the first occurrence of value within the entire instance.

Throws

Throws MfNullReferenceException if called as a static method.
Throws MfArgumentOutOfRangeException if obj is less then 0 or greater then 255

Remarks

This method performs a linear search; therefore, this method is an O(n) operation, where n is Count.