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 is a model in android?
What are the possible razor view extensions?
What is meant by bootstrap in mvc5?
Explain the advantage of packaging over xcopy in .net?
Is mvc 4 supporting windows azure sdk (software development kit) ?
What is entitytypes? : Entity framework
Why is the .net framework 3.0 a major version number of the .net framework if it uses the .net framework 2.0 runtime and compiler?
In .net compact framework, can we free memory explicitly without waiting for garbage collector to free the memory?
Explain Keep method in Tempdata in ASP.Net MVC?
Explain the request flow in asp.net mvc framework?
What is the .net framework and how does it work?
what is split entity?
How to Redirect Tracing to a File
How does �side by side� work for the .net framework 3.0?
Explain how you can send the result back in JSON format in MVC?