Click or drag to resize

PartitionableListTPartialViewBaseTryFindIndexOfItemGreaterThanOrEqualTo Method

Finds the item in the list that is equal to value.

Namespace: Altaxo.Collections
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public bool TryFindIndexOfItemGreaterThanOrEqualTo(
	int value,
	out int indexFound
)

Parameters

value  Int32
The value to find.
indexFound  Int32
On return, contains the index of the item in _itemIndex that is equal to value (if such an item is found). Otherwise, contains the index of the first item which is greater than value.

Return Value

Boolean
True if _itemIndex contains an item equal to value; otherwise, false.
See Also