Search Results

0
votes
3answers
78 views

How do I add an XML attribute using DataContract

Hi I have a simple class I'm serializing. [DataContract(Name = "Test", Namespace = "")] public class Test { [DataMember(Order = 0, Name = "Text")] public string T …
2
votes

How to serialize on to existing file?

This is indeed possible. The code below appends the object. using (var fileStream = new FileStream("C:\file.dat", FileMode.Append)) { var bFormatter = new BinaryFormatter(); …