Array.Max (gb)

Property Read Max As Integer

Restituisce l'indice più grande della matrice.

In altre parole, Array.Max = Array.Count - 1.

Questa proprietà è utile per enumerare la matrice usando FOR .. NEXT

Esempio

DIM i AS Integer, Text AS String[]

Text = ["Solo", "Testo"]

FOR i = 0 TO Text.Max
    PRINT Text[i]
NEXT