Tagged Questions
14
votes
5answers
3k views
What are the differences between the XmlSerializer and BinaryFormatter
I spent a good portion of time last week working on serialization. During that time I found many examples utilizing either the BinaryFormatter or XmlSerializer. Unfortunately, what I did not find were ...
5
votes
3answers
1k views
when to use XML serialization vs binary serialization in .NET?
i have the bit confusion to when to use the xml serialization and when to use the binary serialization
0
votes
3answers
400 views
Best method for serializing objects in .NET (as of v4.0)
I have an simple custom object called MyObject (a couple of basic properties and a List(of MyObject), so it's recursive) that I need to serialize for storage. I'm not sure if I'll serialize to XML or ...