Reverse Method
Builds the array in reverse order.
Syntax
array_.Reverse()
Parameters
Name | Type | Description |
---|---|---|
array_ | The name of an object of type array_ |
Example
Dim x As New Array_
x.FromArray(Array(1, 2, 3)).Reverse
' Result:
'Array (
' [1] = > 3
' [2] = > 2
' [3] = > 1
')