|
Method name |
Brief description |
![](../../sub_image.gif) |
Add |
The Add method adds a new element with the specified value to the end of array and returns its index. |
![](../../sub_image.gif) |
AddRange |
The AddRange method adds the specified collection of elements to the end of array. |
![](../../sub_image.gif) |
BinarySearch |
The BinarySearch method executes binary search of elements in array. |
![](../../sub_image.gif) |
BinarySearchRange |
The BinarySearchRange method executes binary search of the element in array range. |
![](../../sub_image.gif) |
Clear |
The Clear method clears an array. |
![](../../sub_image.gif) |
Clone |
The Clone method creates a copy of the array. |
![](../../sub_image.gif) |
Contains |
The Contains method checks if an element exists. |
![](../../sub_image.gif) |
CopyFrom |
The CopyFrom method copies data from a source. |
![](../../sub_image.gif) |
GetRange |
The GetRange method returns array range. |
![](../../sub_image.gif) |
IndexOf |
The IndexOf method directly searches for value. |
![](../../sub_image.gif) |
IndexOfPos |
The IndexOfPos method directly searches for value starting from the specified value. |
![](../../sub_image.gif) |
IndexOfRange |
The IndexOfRange method directly searches for the element in array range. |
![](../../sub_image.gif) |
Insert |
The Insert method inserts the element into the specified position. |
![](../../sub_image.gif) |
InsertRange |
The InsertRange method inserts collection of elements into target position. |
![](../../sub_image.gif) |
LastIndexOf |
The LastIndexOf method reversely searches for value. |
![](../../sub_image.gif) |
LastIndexOfPos |
The LastIndexOfPos method reversely searches for a value starting from the specified element. |
![](../../sub_image.gif) |
LastIndexOfRange |
The LastIndexOfRange method reversely searches for the element in array range. |
![](../../sub_image.gif) |
Remove |
The Remove method removes element by the value. |
![](../../sub_image.gif) |
RemoveAt |
The RemoveAt method removes element by the index. |
![](../../sub_image.gif) |
RemoveRange |
The RemoveRange method removes element range. |
![](../../sub_image.gif) |
Reverse |
The Reverse method inverts the array. |
![](../../sub_image.gif) |
ReverseRange |
The ReverseRange method inverts the array range. |
![](../../sub_image.gif) |
Sort |
The Sort method sorts the array in ascending order. |
![](../../sub_image.gif) |
SortRange |
The SortRange method sorts array range. |
![](../../sub_image.gif) |
ToArray |
The ToArray method converts into standard string array. |
![](../../sub_image.gif) |
TrimToSize |
The TrimToSize method sets memory size, occupied by the array, that is equal to actual number of elements in the array. |