Click or drag to resize
IListExtensionMethods Class
Class for IList related extension methods.
Inheritance Hierarchy
SystemObject
  SD.Tools.BCLExtensions.CollectionsRelatedIListExtensionMethods

Namespace:  SD.Tools.BCLExtensions.CollectionsRelated
Assembly:  SD.Tools.BCLExtensions (in SD.Tools.BCLExtensions.dll) Version: 1.1.1
Syntax
public static class IListExtensionMethods

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