Avatar of altariamx2003
altariamx2003
Flag for Mexico

asked on 

redim a bidimentional array

I got this bidimentional array
Public dispositivos(0, 1) As String

after i fill the array:
        dispositivos(filas, 0) = nodo.Id
        dispositivos(filas, 1) = nodo.tipo
        filas = filas + 1

I tried to redim it with :ReDim Preserve dispositivos(filas, 1), but always visual basic says that I only can redim the right side of the array

I would like to know how to redim the left side of the array only

Best regards
Visual Basic.NET

Avatar of undefined
Last Comment
wdosanjos

8/22/2022 - Mon