Arrays can be used to store a set of values.
| Type | Description |
|---|---|
| IntegerArray | array of Integer values |
| DoubleArray | array of Double values |
| BooleanArray | array of Boolean values |
It's based on Microsoft .NET Framework List class. For the list of it's methods, please visit List Methods.
Values are counted from 0 to Count. To access 10th value within array use the following
syntax: value = array[10];