Tagged Questions

4
votes
4answers
577 views

Binary Deserialization with different assembly version

I have a project which uses BinaryFormatter to serialize a collection of structs with string and bool? datatypes. The serialization/deserialization works fine, however if I were t …
2
votes
3answers
99 views

BinaryFormatter alternatives

A BinaryFormatter-serialized array of 128³ doubles, takes up 50 MB of space. Serializing an array of 128³ structs with two double fields takes up 150 MB and over 20 seconds to proc …
2
votes
1answer
62 views

How to deserialize or recover a binary serialized dictionary that’s not finished serializing?

When I used my app, on close, it tried to serialize a dictionary that's 300 KB. Because of no disk space, it could only write 292 KB. Is there a way to successfully deserialize wha …
2
votes
5answers
123 views

How to increase deserialization speed?

Serializing/deserializing with BinaryFormatter, resulting serialized file is ~80MB in size. The deserialization takes a few minutes. How could I improve on this? Here's the deseria …
2
votes
1answer
107 views

Does BinaryFormatter apply any compression?

When .NET's BinaryFormatter is used to serialize an object graph, is any type of compression applied? I ask in the context of whether I should worry about the object graph having …
2
votes
1answer
122 views

How do I ignore event subscribers when serializing an object?

Note that I'm answering my own question since I think it might be useful to have the information on the site! FAQ: It's also perfectly fine to ask and answer your own question, …
1
vote
1answer
136 views

Stuck on Serialization in C#

I have a class that handles serialization in C#, called Serializer. It's implementation is below: public class Serializer { public void SerializeRulesManager(string filename, …
1
vote
2answers
132 views

Byte serialization

I recently had a discussion with a colleague about serialization of byte data over a network. He used the BinaryFormatter class to "unparse" the byte data I was sending to him. Thi …
0
votes
4answers
61 views

C# Object Binary Serialization

I want to make a binary serialize of an object and the result to save it in a database. Person person = new Person(); person.Name = "something"; MemoryStream memorystream = new M …
0
votes
2answers
77 views

How to change the order of Deserialization using BinaryFormatter in C#?

Lets say I have classA which contains classB and both are [Serializable]. I assumed, that on Deserialization classB would be deserialized first. This is not the case however, as …