.net byte[] to List<List<Point>>
- by user1112111
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>>.
So I have the byte[], but I cannot figure out how to convert it. How should the de/serialization look like ?