I do now deserialization as
BinaryFormatter bin = new BinaryFormatter(); var test = (List<abc>)bin.Deserialize(stream);
but it is very long. Please tell me how to make faster?
I do now deserialization as
BinaryFormatter bin = new BinaryFormatter(); var test = (List<abc>)bin.Deserialize(stream);
but it is very long. Please tell me how to make faster?
Source: https://ru.stackoverflow.com/questions/314665/
All Articles