.NET Object Serialization and Persistence

To serialize an object using SOAP format, use the SoapFormatter class, defined in the System.Runtime.Serialization.Formatters.Soap namespace. The code for serialization and deserialization is virtual identical to binary format. To serialize, create the SoapFormatter object, create a stream file, and call Serialize(): ................
................