Innovate or Go Home

Naveen Ajmal, Mohammed
posts - 2, comments - 7, trackbacks - 1

My Links

News

Article Categories

Archives

.Net Community Sites

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
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...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Monday, September 20, 2004 6:00 PM | Feedback (1) |

Powered by: