I currently have a jagged array Class[][][] which I want to serialise as a normal Class[] array, then convert back into a Class[][][] array after deserialization. Is it at all possible to convert between the two both ways? The dimensions are of constant sizes.
I currently have a jagged array Class[][][] which I want to serialise as a
Share
If you don’t mind serializing a flattened array and an array of ints, you can use the following: