Hi
I'm writing a program in Visual basic (Visual studio beta 2005)
In this array I need to somthing like
array(0) = 0
array(1) = 1
array(2) = 2
array(3) = 3
i then delete array(2) = 2
the array must then resize to
array(0) = 0
array(1) = 1
array(2) = 3
How can I do this ?
--
thomas
I'm writing a program in Visual basic (Visual studio beta 2005)
In this array I need to somthing like
array(0) = 0
array(1) = 1
array(2) = 2
array(3) = 3
i then delete array(2) = 2
the array must then resize to
array(0) = 0
array(1) = 1
array(2) = 3
How can I do this ?
--
thomas
Comment