Click or drag to resize

IListExtensionMethods Methods

The IListExtensionMethods type exposes the following members.

Methods
  NameDescription
Public methodStatic memberAddRangeT
Adds the range specified to an IList(Of T) typed container.
Public methodStatic memberBinarySearchT
Searches for the element specified in the sorted list specified using binary search http://en.wikipedia.org/wiki/Binary_search. The algorithm is re-implemented here to be able to search in any sorted IList implementing data structure (.NET's BCL only implements BinarySearch on arrays and List(Of T). If no IComparer(Of T) is available, try using Algorithmia's ComparisonBasedComparer,
Public methodStatic memberIsNullOrEmptyT
Determines whether the passed in list is null or empty.
Public methodStatic memberSwapValuesT
Swaps the values at indexA and indexB.
Top
See Also