On Thursday, 13 November 2014 at 14:27:32 UTC, Steven
Schveighoffer wrote:
On 11/13/14 2:08 AM, Sergey wrote:
Hello everyone!
I need to create a two-dimensional array in this way, for
example:
auto x = 10;
auto y = 10;
auto some_array = new string[x][y];
auto some_array = new string[][](
On 11/13/14 2:08 AM, Sergey wrote:
Hello everyone!
I need to create a two-dimensional array in this way, for example:
auto x = 10;
auto y = 10;
auto some_array = new string[x][y];
auto some_array = new string[][](x, y);
Note, this creates 10 arrays of 10 elements all on the heap, and then
On Thursday, 13 November 2014 at 07:08:19 UTC, Sergey wrote:
Hello everyone!
I need to create a two-dimensional array in this way, for
example:
What did you want the type of the array to be? "string[10][10]"
or "string[][]"?
On Thu, 13 Nov 2014 07:08:17 +
Sergey via Digitalmars-d wrote:
>Hello everyone!
>
> I need to create a two-dimensional array in this way, for example:
>
> auto x = 10;
> auto y = 10;
> auto some_array = new string[x][y];
> variable x cannot be read at compile time
>
> I tried this:
> e
On Thursday, 13 November 2014 at 07:50:26 UTC, Brian Schott wrote:
On Thursday, 13 November 2014 at 07:08:19 UTC, Sergey wrote:
Hello everyone!
I need to create a two-dimensional array in this way, for
example:
What did you want the type of the array to be? "string[10][10]"
or "string[][]"
Hello everyone!
I need to create a two-dimensional array in this way, for example:
auto x = 10;
auto y = 10;
auto some_array = new string[x][y];
variable x cannot be read at compile time
I tried this:
enum columns_array =
[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20];
auto y = 10;
in