TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About serializing
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Lajapathy Arun (4)
Ziggy Rafiq (1)
Bipin Joshi (1)
Sangeetha S (1)
Sonu Chauhan (1)
Bruno Leonardo Michels (1)
Mukesh Kumar (1)
Lee SangEun (1)
Related resources for serializing
No resource found
A simplified approach to serializing and deserializing objects in C# 10
4/16/2024 10:48:12 AM.
This comprehensive guide teaches how to streamline data interchange processes efficiently using C# 10 Records. Authored by Ziggy Rafiq.
Serializing Objects In C#
10/16/2023 5:55:56 AM.
Serialization in C# is the process of converting an object into a stream of bytes to store the object to memory, a database, or a file. Its main purpose is to save the state of an object in order to b
Deserializing Various Type Of JSON Data In C#
2/8/2022 4:47:12 AM.
In this article, you will learn how to deserialize various type of json data in c#.
Serializing and Deserializing XML String
1/11/2022 10:01:28 AM.
In this article we will see how we can serialize a xml sring into an object and vice versa. You can serialize your object to a byte array and can deSerialize the byte array into an object.
Serializing and Deserializing an Object as Binary Data Using Binary Formatter ASP.NET C#
1/28/2021 5:13:54 AM.
In this article, we are going to see how to serialize and deserialize an object as binary data using the binary formatter.
Deserializing Interface Properties With Json.NET
5/31/2015 5:37:20 PM.
You can't deserialize something directly to an interface, You need a concrete class to instantiate. This can be done by following some easy steps.
Generic Serializing and Deserializing Object as XML Data Using XmlSerializer
9/29/2012 5:40:03 AM.
In this article we are going to see how to serialize and deserialize an object as XML data.
Serializing and Deserializing Object as XML Data Using XmlSerializer
5/20/2012 2:39:25 AM.
In this article we are going to see how to serialize and deserialize an object as XML data.
Generic Way of Serializing and DeSerializing the Object as Binary Data Using Binary Formatter ASP.NET C#
4/26/2012 12:38:07 AM.
In this article we are going to see, how we serialize and deserialize an object as binary data in a generic way using the binary formatter.
Serializing a DataSet Object as XML
6/28/2011 4:23:56 PM.
You can serialize a populated DataSet object to an XML file by executing the DataSet object’s WriteXml method.
Saving and Reading Object to/from a Database
12/16/2005 5:33:55 AM.
An object is a memory stream, which is hard to write using the normal methods. In this article, I show how you can save objects in a database and read back from the database.