GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Microsoft  >  C#

 Print  |  
Question:  C# Serializable Keyword

Answer: What is the use of serializable keyword in C#?


August 08, 2009 07:20:01 #3
 chintan.desai   Member Since: July 2009    Total Comments: 8 

RE: C# Serializable Keyword
 

Serializable is a concept of converting your user define type i.e. class into bytes. Serializing object into bytes help for ease in transporting data within network or machines. .Net also provides support to desializing

We can do Serializing in following ways:
i. XmlSerializer.
ii. Soap Formatter and Binary formatter.


     

 

Back To Question