C# Corner
Tech
News
Videos
Forums
Trainings
Books
Events
More
Interviews
Jobs
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
Java
Learn iOS Programming
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
8
Reply
What is serialization?
Guest User
11y
3.6k
0
Reply
Delete Row
Delete Column
Insert Link
×
Insert
Cancel
Embed YouTube Video
×
Width (%)
Height (%)
Insert
Cancel
Table Options
×
Rows
Columns
First row as header
Create Table
Insert Image
×
Selected file:
Alignment
Left
Center
Right
Select an image from your device to upload
Upload to Server
Cancel
Submit
To transport object over network we need to convert into stream of bytes. The process of conversion is serialization and vice-versa is deserialization.
Guest User
11y
4
The process of converting the object into the stream of bytes.... ex: i have image in the picturebox and i need to store in database,so we need to convert into the stream of bytes and store it into the DB..
Sunil Gaded
11y
1
It is Convert Object to bytes stream for sharing on Network.
Mageshwaran R
7y
0
Convert object into bytes stream for sharing on network.
Sanjay Sabariya
10y
0
Serialization is the process of converting an object into a stream of bytes in order to store the object or transmit it to memory, a database, or a file. Its main purpose is to save the state of an object in order to be able to recreate it when needed. The reverse process is called deserialization.
Kml Surani
10y
0
refer below linkhttps://msdn.microsoft.com/en-IN/library/ms233843.aspxhttp://www.codeproject.com/Articles/36781/Serialization-and-Deserialization-in-ASP-NET-with
Abrar Ahmad Ansari
10y
0
Convertion of C# object to Json Object
Gokul Rathod
11y
0
I think the most common use of the term serialization has to do with converting a binary object into an XML (or other string) representation so that it can be stored in a database/file or sent across a network in a web service call. Deserialization is the reverse process - converting an XML/string back into an object.Another term you might come across is marshalling/unmarshalling. Marshalling is basically the same concept as serializing, and unmarshalling is the same as deserializing.
Ankur Jain
11y
0
What is the use of using statement in C#
Is string mutable or immutable?
Message