| |
Name
|
Description
|
| AsReadOnly |
Returns a read-only wrapper for the specified array.
|
| BinarySearch |
Overloaded.
Searches a one-dimensional sorted Array for a value, using a binary search algorithm.
|
| Clear |
Sets a range of elements in the Array to zero, to false, or to a null reference (Nothing in Visual Basic), depending on the element type.
|
| Clone |
Creates a shallow copy of the Array.
|
| ConstrainedCopy |
Copies a range of elements from an Array starting at the specified source index and pastes them to another Array starting at the specified destination index. Guarantees that all changes are undone if the copy does not succeed completely.
|
| ConvertAll |
Converts an array of one type to an array of another type.
|
| Copy |
Overloaded.
Copies a range of elements in one Array to another Array and performs type casting and boxing as required.
|
| CopyTo |
Overloaded.
Copies all the elements of the current one-dimensional Array to the specified one-dimensional Array.
|
| CreateInstance |
Overloaded.
Initializes a new instance of the Array class.
|
| Equals
|
Overloaded.
Determines whether two Object instances are equal.
(Inherited from
Object.)
|
| Exists |
Determines whether the specified array contains elements that match the conditions defined by the specified predicate.
|
| Find |
Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire Array.
|
| FindAll |
Retrieves all the elements that match the conditions defined by the specified predicate.
|
| FindIndex |
Overloaded. |
| FindLast |
Searches for an element that matches the conditions defined by the specified predicate, and returns the last occurrence within the entire Array.
|
| FindLastIndex |
Overloaded. |
| ForEach |
Performs the specified action on each element of the specified array.
|
| GetEnumerator |
Returns an IEnumerator for the Array.
|
| GetHashCode
|
Serves as a hash function for a particular type. GetHashCode is suitable for use in hashing algorithms and data structures like a hash table.
(Inherited from
Object.)
|
| GetLength |
Gets a 32-bit integer that represents the number of elements in the specified dimension of the Array.
|
| GetLongLength |
Gets a 64-bit integer that represents the number of elements in the specified dimension of the Array.
|
| GetLowerBound |
Gets the lower bound of the specified dimension in the Array.
|
| GetType
|
Gets the Type of the current instance.
(Inherited from
Object.)
|
| GetUpperBound |
Gets the upper bound of the specified dimension in the Array.
|
| GetValue |
Overloaded.
Gets the value of the specified element in the current Array.
|
| IndexOf |
Overloaded.
Returns the index of the first occurrence of a value in a one-dimensional Array or in a portion of the Array.
|
| Initialize |
Initializes every element of the value-type Array by calling the default constructor of the value type.
|
| LastIndexOf |
Overloaded.
Returns the index of the last occurrence of a value in a one-dimensional Array or in a portion of the Array.
|
| ReferenceEquals
|
Determines whether the specified Object instances are the same instance.
(Inherited from
Object.)
|
| Resize |
Changes the size of an array to the specified new size.
|
| Reverse |
Overloaded.
Reverses the order of the elements in a one-dimensional Array or in a portion of the Array.
|
| SetValue |
Overloaded.
Sets the specified element in the current Array to the specified value.
|
| Sort |
Overloaded.
Sorts the elements in one-dimensional Array objects.
|
| ToString
|
Returns a String that represents the current Object.
(Inherited from
Object.)
|
| TrueForAll |
Determines whether every element in the array matches the conditions defined by the specified predicate.
|