C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
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
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Lajapathy Arun(4)
Sourav Kayal(2)
Kailash Chandra Behera(2)
Mahesh Chand(1)
Manoj Kalla(1)
Bechir Bejaoui(1)
Periyasamy Vellingirisamy(1)
Nipun Tomar(1)
Shivang (1)
Jalpa Dhola(1)
Ziggy Rafiq(1)
Ibrahim Ersoy(1)
Mukesh Kumar(1)
Matthew Cochran(1)
Sateesh Arveti(1)
Sonu Chauhan(1)
Lee SangEun(1)
Raimund Neumuller(1)
Bipin Joshi(1)
Resources
No resource found
How do I serialize and deserialize JSON data in C#?
Nov 19, 2023.
Download source code on how to serialize and deserialize JSON data in C#.
Asp.Net MVC jQuery AJAX Form Submit using Serialize Form Data into a Model
Nov 06, 2019.
In this article, we will learn Asp.Net MVC jQuery AJAX Form Submit using Serialize Form Data into a Model.
How to serialize an object using an ISerializable interface
Feb 27, 2008.
In this article I will show you how to serialize an object using ISerializable interface with a very simple manner.
Generic Implementation For Serializer/Deserializer Using Google Protocol Buffer
Sep 24, 2021.
Serialize or deserialize the input using google protocol buffer library in generic implementation.
JSON Serialization Using Newtonsoft JSON Serialize
Dec 16, 2013.
In this article we will use the Newtonsoft JSON serialization library to serialize JSON data. Download and install the Newtonsoft JSON serializer package using the NuGet package manager.
Serialize And Deserialize Using SoapFormatter Class In C#
Apr 09, 2013.
In this article you will learn about Serialize and Deserialize using SoapFormatter Class in C#.
Serialize And Deserialize Objects By Using BinaryFormatter
Apr 09, 2013.
Serializing and deserializing objects using BinaryFormatter in C# is a powerful technique for converting complex objects into a binary format for storage, transmission, or deep cloning. This process allows objects to be saved to a file, sent over a network, or stored in a database. This approach enables data persistence and is commonly used in applications that require object state preservation.
Generic Serializing and Deserializing Object as XML Data Using XmlSerializer
Apr 27, 2012.
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
Apr 21, 2012.
In this article we are going to see how to serialize and deserialize an object as XML data.
Serialize Object Using Json
Sep 06, 2010.
If you want to serialize any object to or from JSON (JavaScript object Notation). You can use DataContractJsonSerializer's WriteObject and ReadObject methods to serialize and deserialize respectively.
Build a Simple Habit Tracker in C# Console with JSON Storage
Jul 31, 2025.
In this beginner-friendly C# article, you'll learn how to build a Habit Tracker application using a simple console interface and JSON for persistent storage. This project will help you manage daily habits and understand key programming concepts like classes, lists, file handling, and serialization in C#.
How to Read and Write JSON Files in C#
Nov 17, 2024.
JSON is a common data format used in APIs, configuration files, and data exchange. Learn to handle JSON in C# using `System.Text.Json`. This article covers creating data models, writing to and reading from JSON files, with practical code examples for efficient JSON management.
A simplified approach to serializing and deserializing objects in C# 10
Mar 04, 2024.
This comprehensive guide teaches how to streamline data interchange processes efficiently using C# 10 Records. Authored by Ziggy Rafiq.
Understand jQuery Ajax Function: Pass JSON Data to Service Method
Oct 31, 2013.
In this article we will learn to send JSON data to Web Method and to return serialized JSON data in client part using JQuery ajax method.
SoapFormatter in C#
Jul 08, 2012.
Learn to serialize and deserialize objects using SOAPFormatter in .NETFramework. Understand the usage of the IFormatter interface with Serialize and Deserialize functions. Implement serialization with FileStream and SoapFormatter. Ensure proper file handling for serialization and deserialization.
Generic Way of Serializing and DeSerializing the Object as Binary Data Using Binary Formatter ASP.NET C#
Apr 25, 2012.
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 and Deserializing an Object as Binary Data Using Binary Formatter ASP.NET C#
Apr 21, 2012.
In this article, we are going to see how to serialize and deserialize an object as binary data using the binary formatter.
Serializing a DataSet Object as XML
Jun 28, 2011.
You can serialize a populated DataSet object to an XML file by executing the DataSet object’s WriteXml method.
XML Serialization/Deserialization of Immutable Objects
Apr 19, 2010.
Here’s a brief example of how to serialize and deserialize immutable objects to XML.
Introduction to JQuery: Part IX
Mar 23, 2010.
In this article, we will cover few JQuery's AJAX functions.
Serializing and Deserializing XML String
Jul 20, 2006.
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.
Saving and Reading Object to/from a Database
Mar 25, 2002.
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.
Memory Game
Mar 19, 2002.
This is a memory game where you can use your favorite pictures (.bmp, jpg, gif).
Serializing Objects In C#
May 14, 2001.
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 be able to recreate it when needed. The reverse process is called deserialization.