CustomSortHelperT Constructor

Creates a new custom sort helper and presorts the list.

Definition

Namespace: SnapDB.Snap
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public CustomSortHelper(
	IEnumerable<T> items,
	Func<T, T, bool> isLessThan
)

Parameters

items  IEnumerableT
The collection of items to be sorted.
isLessThan  FuncT, T, Boolean
A function that determines if one item is less than another.

See Also