|
I have 2 multidimensional array, both of the same size. I need to copy the content from one to another. Is there a better way for doing that than this one?? EDIT: Im using JS.
(comments are locked)
|
BCE0023: No appropriate version of 'System.Array.Copy' for the argument list '(Array, Array, System.Object)' was found. Im using JS. I forgot to mention :)
May 16 '12 at 07:19 PM
DarkSlash
So am I (it's obvious from your code). I guess you're not actually using multidimensional arrays, instead you are using Arrays of Arrays. Which is bad. ;) Use multidimensional arrays instead.
May 16 '12 at 07:30 PM
Eric5h5
Looked in my code. Im using arrays of arrays. Im going to look how to change it! Thanks! :)
May 16 '12 at 07:35 PM
DarkSlash
May 16 '12 at 07:53 PM
Eric5h5
Why is it bad to use arrays of arrays? There are some cases where it is useful...
May 16 '12 at 08:01 PM
Tasarran
(comments are locked)
|
