Is there a way to declare and assign an associative array in one statement? Every example I've seen uses a separate line of code to assign each index a value. In most programming languages, you can declare and assign in one statement like so:
c#
int[,] nums = {{0,1},{0,2}};
Also is there a way to make an associative array global to a particular package?
Thanks...
c#
int[,] nums = {{0,1},{0,2}};
Also is there a way to make an associative array global to a particular package?
Thanks...