If isArray(Inizio) then
if (z+1) < inizio.GetLenght(0) - 1 then
'OK ESISTE
else
'KO NON ESISTE
end if
end if


Attenzione la funzione inizio.GetLenght(0) restituisce il numero preciso di elementi ... esempio ho

Dim inizio() as string = {"1", "2", "3"}

l'istruzione inizio.GetLenght(0) restituisce 3 ... e come tutti sanno per accedere all'array bisogna partire dalla posizione 0

Ciao Dani10