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
What do you mean by a windows process in regards to memory allocation?
How objects are stored in memory?
What are jump statements in c#?
What is the use of base keyword? Tell me a practical example for base keyword’s usage?
What is anonymous class in c#?
What is multicast delegate in c# ?
When should I throw an exception?
Why dictionary is used in c#?
How to implement singleton design pattern in c#?
What are extensions in c#?
Is it possible to have different access modifiers on the get/set methods of a property in c#?
Is null empty or whitespace c#?
What are the different types of constructors in c#?
How many keyword present in C# language ?
What is the difference while using directive vs using statement ?