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)
Searches for the specified var or object and returns the index of the first occurrence within the entire instance.
obj
The object or var to locate in the MfByteList
Can be any type that matches IsInteger or var integer.
Returns index of the first occurrence of value within the entire instance.
Throws MfNullReferenceException if called as a static method.
Throws MfArgumentOutOfRangeException if obj is less then 0 or greater then 255
This method performs a linear search; therefore, this method is an O(n) operation, where n is Count.