How do I create a multidimension array in VB.net? I want to specify the dimensions of the array in the code, but the array must be global.
Dim canvas()() As Integer
Then later on
x = someValue
y = someValue
canvas = New Integer(x)(y)
Cheers!