Is is possible to convert a byte array back to a List<List<Point>>
?
LE:
I am saving the List<List<Point>>
in a database BLOB field.
When I retrieve it, I want to convert it back to a List<List<Point>>
.
The data is kept into an SQLite database and gets set with:
...
cmd.Parameters.AddWithValue("@bynaryData", theList);
...
So I have the byte[]
, but I cannot figure out how to convert it. How should the de/serialization look like ?