What is Serialization and how do we implement (in real time
scenario)
Answer Posted / saurabh
Serialization is process of converting an object into stream
of bytes so that it can be stored or transferred across the
network.
Real time scenario ?
Try saving an object to session implemented using
Aspnet_State service or sql server. Here all the object need
to be stored in session requires to be support serialization.
because both aspnet_state service and session stored in sql
server requires object to support serialization
Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
Why can’t struct be used instead of class for storing entity?
What is difference between ienumerable and ienumerator in c#?
Is datetime value type c#?
Is string nullable c#?
What is entity framework in c#?
What is the purpose of reserved word using in c#?
Why do I get a security exception when I try to run my c# app?
what is the Difference between the public and private ?
Explain About friend and Protected friend
Difference between directcast and ctype.
Can we override static class in c#?
What is the concept of strong names?
How big is a float?
How many static constructors are allowed in a class?
What does async mean in c#?