G
Guest
Its easy enough to create and initialize a a 2D array of ints
as int[,] intarr = new int[,] {{1, 2}, {3, 4}, {5, 6}};, but how can i do
this with a 2D array of Point, or other multi init data types
Thanks
as int[,] intarr = new int[,] {{1, 2}, {3, 4}, {5, 6}};, but how can i do
this with a 2D array of Point, or other multi init data types
Thanks