What is serialization in .NET? What are the ways to control
serialization?
Answer Posted / ragesh
When developing smaller applications that do not have a
database (or other formal storage mechanism) or data that
doesn't need to be stored in a database (such as the state
of a web application), you often still would like to save
the data for later retrieval. There are many ways to do
this, but many of them are subject to a lot of extra code
(work) and extra time spent debugging. With .NET, there is
now an easy way to add this functionality to your code with
only a few lines of easily tested code. This easy way is
called serialization.
| Is This Answer Correct ? | 7 Yes | 4 No |
Post New Answer View All Answers
What is ViewStart Page in ASP.Net MVC?
What are Scaffold templates in ASP.Net MVC?
What is model first? : Entity framework
What is NonActionAttribute ?
What is meant by tempdata in mvc?
What are ajax helpers in asp.net mvc?
What are bundling & minification features in asp.net mvc 4?
Which is the root namespace for fundamental types in .net framework?
How to return the JSON from action method in ASP.Net MVC?
What is display mode in mvc?
Is entity framework slow?
How does the .net framework 3.0 relate to the .net framework 2.0?
Can I use razor code in javascript in asp.net mvc?
Give an example for authorization filters in an asp.net mvc application?
What is Layout in ASP.Net MVC?