-
How do I save a variable. the variable is a multidimensional array.
Ive thought about converting it to a string and doing that way but is there any way of doing it and just saving the data without changing it so its easier to bring back.
How do I load that same saved data.
example: comp(h).dimension(r)
that is similar to what I have. I want to be able to save it and bring it straight back into that variable.
Any help?
-
There is no way to save an array and maintain its "shape". I would suggest that you either save the index and data of each row to an ini file or to a text file if the array is large.