On 10/2/07, Janice Caron <caron800 at googlemail.com> wrote: > Then > arr = new Array2D(4096,4096); Sorry. That should be arr = new Array!(int)(4096,4096); then you just refer to the elements as arr[x,y] as you'd expect.