In VBscript, how do you set an array element to be a dynamic array? -


i want each element of array dynamic array can later individually resize redim. don't want use arraylist or use 2d array. possible, , how?

redim masterarray(10) x = 1 10     redim subarray(10)     masterarray(x) = subarray next    masterarray(1)(2) = 5 masterarray(2)(2) = 6 msgbox masterarray(1)(2) ' shows 5 msgbox masterarray(2)(2) ' shows 6 

Comments

Popular posts from this blog

html5 - What is breaking my page when printing? -

html - Unable to style the color of bullets in a list -

c# - must be a non-abstract type with a public parameterless constructor in redis -