"The total size of a static array cannot exceed 16Mb."

Janice Caron caron800 at googlemail.com
Tue Oct 2 00:43:59 PDT 2007


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.



More information about the Digitalmars-d mailing list