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
Can you set the unlimited length for "maxjsonlength" property in config?
What is the significance of nonactionattribute?
explain what is ado.net entity framework?
Name a few different return types of a controller action method?
Explain what is the difference between view and partial view?
What is conceptual model? : Entity framework
Will c# 3.0, vb.net 9.0, atlas, or linq be included in the .net framework 3.0?
What is entitytype? : Entity framework
What type of filter does outputcacheattribute class represents?
I want to fetch data from datareader. i have three tables in datareader. i want to bind my two table with datagrid, then i want to fetch a value from my third table. do u have any idea pls help me. we use dr.nextresult() for multiple tables.
Is it possible to cancel filter execution?
What is display mode in mvc?
Can we free memory explicitly without waiting for garbage collector to free the memory in .net compact framework?
Explain dependency resolution?
What are advantages of Dependency Injection (DI) in ASP.Net MVC?