|
Method name |
Brief description |
 |
AddRange |
The AddRange method adds the collection to the end of the array. |
 |
BinarySearch |
The BinarySearch method executes binary search of elements in array. |
 |
BinarySearchRange |
The BinarySearchRange method executes binary search of the element in array range. |
 |
Clone |
The Clone method creates a copy of the array. |
 |
GetRange |
The GetRange method returns array range. |
 |
IndexOfPos |
The IndexOfPos method executes direct search for a value starting from a specified element. |
 |
IndexOfRange |
The IndexOfRange method executes direct search of the element in array range. |
 |
InsertRange |
The InsertRange method inserts collection of elements into the specified position. |
 |
LastIndexOf |
The LastIndexOf method reversely searches for value. |
 |
LastIndexOfPos |
The LastIndexOfPos method reversely searches for a value starting from the specified element. |
 |
LastIndexOfRange |
The LastIndexOfRange method reversely searches for the element in array range. |
 |
RemoveRange |
The RemoveRange method removes value range. |
 |
Reverse |
The Reverse method sets reverse order of array elements. |
 |
ReverseRange |
The ReverseRange method sets reverse order of array element range. |
 |
Sort |
The Sort method sorts an array. |
 |
SortRange |
The SortRange method sorts array range. |
 |
ToArray |
The ToArray method converts into standard array. |
 |
TrimToSize |
The TrimToSize method sets array size equal to actual number of elements in the array. |