FastTrack@Simplified.Net
Watch this out for a series of articles on Microsoft .Net. The simplified zipped-content articles will put you all on a FastTrack on .Net
Serialization It’s a process of persisting the state of an object to disk or any storage medium. Why Serialization? To re-create the object at a later stage. To send object across application domains. How to make a class serializable?By using the [Serializable] attribute [Serializable] class Employee { public int age; public string name; }How to serialize a serializable class? //Initialize the object Employee emp=new Employee(); emp.age=30; emp.name="Mohammed Ajmal"; //Serialize the object...