SortableListContains Method |
IList implementation.
Search for a specified object in the list.
If the list is sorted, a
BinarySearch is performed using IComparer interface.
Else the
Object.Equals implementation is used.
Namespace:
Pathfinding
Assembly:
RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax public bool Contains(
Object O
)
Parameters
- O
- Type: SystemObject
The object to look for
Return Value
Type:
Booleantrue if the object is in the list, otherwise false.
Implements
IListContains(Object)See Also