Actually, C# (the language) doesn't know anything about serailization, but .NET (the framework) provides lots of ways... XmlSerializer
, BinaryFormatter
, DataContractSerializer
(.NET 3.0) - or there are a few bespoke serialization frameworks too.
Which to use depends on your requirements; BinaryFormatter
is simple to use, but burns assembly metadata information into the file - making it non-portable (you couldn't open it in Java, for example). XmlSerializer
and DataContractSerializer
are primarily xml-based, making it quite portable, but fairly large unless you compress it.
Some proprietary serializers are half-way between the two; protobuf-net is a binary formatter (so very dense data), but which follows a portable standard for the data format (Google's protocol buffers spec). Whether this is useful depends on your scenario.
Typical code (here using XmlSerializer
):
XmlSerializer ser = new XmlSerializer(typeof(Foo));
// write
using (var stream = File.Create("foo.xml"))
{
ser.Serialize(stream, foo); // your instance
}
// read
using (var stream = File.OpenRead("foo.xml"))
{
Foo newFoo = (Foo)ser.Deserialize(stream);
}