Description
Syntax
Example
Description
Example
Description
Example
Properties | Properties | Description |
|---|---|
| Is Fixed Size | Used to Check Wheater Array Is in Fixed size or not |
| Length | Used to Get total number of elements in array(32bit Integer) |
| Rank | Used to Get number of dimensions |
| LongLength | Used to Get total number of elements in array(64bit Integer) |
| IsReadOnly | Used to Check Wheater Array is in Read-Only or not |
Methods | Methods | Description |
|---|---|
| Clear (Array, Index, Length) | Used to elements in the Array |
| Sort (Array) | Used to sort the elements in one-dimensional Array |
| Reverse (Array) | Used to get the reverse order of elements in Array |
| Copy (sourceArray,destinationArray,Length) | Used to copy one Array to another Array based on length |
| Get Type | Used to get the type of element |
| SetValue (Value, Index) | Used to sets the elements at the specified position(32bit Integer) |
| Get Value | Gets the value at the specified position (32bit Integer) |
| Copy To (Array, Index) | Used to copy current one-dimensional array to the specified one-dimensional array |
| Get Length (Dimensions) | Used to represent the number of elements (32bit Integer) |
Points