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 the version number for the next version of the .net framework, codenamed �orcas�?
What are the differences between Partial View and Display Template and Edit Templates in ASP.Net MVC?
what is entityclient?
Can you explain model, controller and view in mvc?
Is it possible to create a custom filter?
How does the .net framework 3.0 relate to the .net framework 2.0?
What filters are executed in the end?
What is entityset? : Entity framework
What is action methods in web api?
What is mapping in entity framework? : Entity framework
Name a few different return types of a controller action method?
What is the difference between entity framework and mvc?
Explain covariance and contra-variance in .net framework 4.0. Give an example for each.
what is msl?
Explain the advantages and disadvantages of ASP.Net MVC over ASP.NET?