What is serialization in .NET? What are the ways to control
serialization?
Answer Posted / arijit mandal
Serialization is the process of converting an object into a
stream of bytes. On the other hand Deserialization is the
process of creating an object from a stream of bytes.
Serialization/Deserialization is used to transport or to
persist objects. Serialization can be defined as the
process of storing the state of an object to a storage
medium. During this process, the public and private fields
of the object and the name of the class, including the
assembly are converted to a stream of bytes. Which is then
written to a data stream. Upon the object's subsequent
deserialized, an exact clone of the original object is
created.
| Is This Answer Correct ? | 23 Yes | 0 No |
Post New Answer View All Answers
what do you mean by navigation property?
what is client wins and store wins mode in entity framework concurrency?
Is .net core replacing .net framework?
what is more complex to implement property, methods or event? how can I define criteria to compare the difficulty of implementation between them? for example the number of methods wanted to implements property is 2 methods. how many methods I need it to implements events?
what is minimum requirement for entity framework applications to run?
What is difference between html.beginform and ajax.beginform?
What is the advantage of mvc?
what is ssdl?
What is separation of concerns in asp.net mvc?
What is work of clr?
What is a model in android?
What is iobjectset? : Entity framework
What are the differences between Partial View and Display Template and Edit Templates in ASP.Net MVC?
What is the meaning of unobtrusive javascript? Explain us by any practical example.
Which approach provides better support for test driven development - asp.net mvc or asp.net webforms?