Latest Articles ::
When serializing classes to XML, each public property and field value is transformed into an XML element. The name of the element matches the name of...
Every XML document includes a root element that contains all of the other information held. When serializing objects to XML the root element's...
Use the built-in JSON libraries in .NET to serialize your objects to JSON.
Cloning is the process of creating copies of objects or object graphs. The .NET framework provides methods for creating shallow copies, where a...
A standard problem with object-oriented languages is that of persisting object state. Binary serialization allows single objects or complex models to...
There are countless situations when you would like to save the data for later retrieval, but don't need the overhead or complexity of access to a...
Versioning Tolerance Serialization in .NET Framework 2.0. New to .NET Framework 2.0 is VTS (Versioning Tolerance Serialization). Learn about it here.
Learn how to implement the IXmlSerializable in order to customize serialization of your objects - for instance, serializing a NameValueCollection.