|
Method name |
Brief description |
|
Add |
The Add method adds a new element with the specified value to the end of array and returns its index. |
|
AddRange |
The AddRange method adds the specified collection of elements to the end of 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. |
|
Clear |
The Clear method clears an array. |
|
Clone |
The Clone method creates a copy of the array. |
|
Contains |
The Contains method checks if an element exists. |
|
CopyFrom |
The CopyFrom method copies data from a source. |
|
GetRange |
The GetRange method returns the array range according to the specified parameters. |
|
IndexOf |
The IndexOf method directly searches for value. |
|
IndexOfPos |
The IndexOfPos method directly searches for value starting from the specified value. |
|
IndexOfRange |
The IndexOfRange method directly searches for the element in the specified range. |
|
Insert |
The Insert method inserts the element into the specified position. |
|
InsertRange |
The InsertRange method inserts collection of elements into target position. |
|
LastIndexOf |
The LastIndexOf method reversely searches for value. |
|
LastIndexOfPos |
The LastIndexOfPos method reversely searches for a value starting from the specified position. |
|
LastIndexOfRange |
The LastIndexOfRange method reversely searches for the element in the specified range. |
|
Remove |
The Remove method removes element with the specified value. |
|
RemoveAt |
The Remove method removes element with the specified index. |
|
RemoveRange |
The RemoveRange method removes element range. |
|
Reverse |
The Reverse method inverts the array. |
|
ReverseRange |
The ReverseRange method inverts the array range. |
|
Sort |
The Sort method sorts the array in ascending order. |
|
SortRange |
The SortRange method sorts the array range in ascending order. |
|
ToArray |
The ToArray method converts into standard string array. |