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 Serialize
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Mahesh Chand (3)
Lajapathy Arun (3)
Akshay Patel (3)
Kailash Chandra Behera (2)
Sourav Kayal (2)
John Godel (2)
Vidya Vrat Agarwal (1)
Ibrahim Ersoy (1)
Shweta Lodha (1)
Ashutosh Singh (1)
Jaish Mathews (1)
Santosh Karanam (1)
Ecco Suprastyo (1)
Bechir Bejaoui (1)
Sangeetha S (1)
Satya Karki (1)
Bohdan Stupak (1)
Yousef Shawareb (1)
Periyasamy Vellingirisamy (1)
Raj Kumar (1)
Amit Choudhary (1)
Sridhar Sharma (1)
Manoj Kalla (1)
David Mccarter (1)
Tarun Rajak (1)
Ramesh Kartik (1)
Akhil Mittal (1)
Debendra Dash (1)
Ravi Patel (1)
Sam Hobbs (1)
Rafal Wozniak (1)
Matthew Cochran (1)
Vishal Nayan (1)
Sovon Nath (1)
Manas Patnaik (1)
Nipun Tomar (1)
Sateesh Arveti (1)
Michael Gold (1)
Raimund Neumuller (1)
Lee SangEun (1)
Related resources for Serialize
No resource found
.NET Serialization
4/24/2024 1:26:20 PM.
Serialization in .NET facilitates object state persistence, enabling transmission across networks or storage in various formats like binary and XML. It ensures data integrity, exemplified by the US Vi
SoapFormatter in C#
4/23/2024 11:25:44 AM.
Learn to serialize and deserialize objects using SOAPFormatter in .NETFramework. Understand the usage of the IFormatter interface with Serialize and Deserialize functions. Implement serialization wit
Globally Configuring Values For JSON Serializer In ASP.NET Core 3.1
4/8/2024 8:18:26 AM.
Learn how to set constraints globally for JSON serialization in ASP.NET Core, avoiding manual decoration of every property. Customize data formatting using converters, and fallback to default settings
Camelcase Serialization in .Net 9
2/19/2024 6:27:06 AM.
In .NET 9, developers have been granted a powerful tool to enhance data serialization: CamelCase Serialization. This feature facilitates smoother interoperability with systems and frameworks that expe
How do I serialize and deserialize JSON data in C#?
11/20/2023 5:10:55 AM.
Download source code on how to serialize and deserialize JSON data in C#.
Serialize And Deserialize Objects By Using BinaryFormatter
10/10/2023 11:26:52 AM.
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 a
Serialize And Deserialize Using SoapFormatter Class In C#
10/6/2023 9:40:28 AM.
In this article you will learn about Serialize and Deserialize using SoapFormatter Class in C#.
Apply Object Serialization In Real Life Situation
9/22/2023 11:15:45 AM.
Object serialization is a process of streaming an object into a byte array. This article explains the object serialization process using a real world example.
Comparing JSON Deserializers
9/20/2023 6:33:51 AM.
Often we come across situations to deserialize the json string to object and wonder which one is the best way.
Newtonsoft JSON Deserialize in C# with Example
8/17/2023 5:33:39 AM.
In this article, you will learn about Newtonsoft JSON Deserializing in C# with an example.
Convert string to JSON in C#
6/6/2023 4:40:06 AM.
Code example of how to convert string to JSON in C#
Convert a JSON object into a string in C#
6/3/2023 4:32:06 PM.
Code example of how to convert an object into a JSON string in C#.
How to serialize an object using an ISerializable interface
3/23/2022 9:40:07 AM.
In this article I will show you how to serialize an object using ISerializable interface with a very simple manner.
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#.
How To Post Data In ASP.NET Using AJAX Without JSON Form Serializer
2/7/2022 9:10:14 AM.
This article explains the method of sending data in the ASP.NET MVC application using Ajax without JSON Form serializer.
Overriding JSON Serializer In Giraffe
12/29/2021 3:00:30 PM.
Overriding JSON Serializer in Giraffe
Deserialize JSON Format In An ASP.NET GridView Using System.Text.Json Library
12/6/2021 3:00:03 PM.
In this article, you will learn about the best way to deserialize JSON format in an ASP.NET GridView using System.Text.Json library.
Generic Implementation For Serializer/Deserializer Using Google Protocol Buffer
9/24/2021 3:35:47 PM.
Serialize or deserialize the input using google protocol buffer library in generic implementation.
How to Consume Web API Using Web Request
2/10/2021 5:29:40 AM.
This article explains how to consume a Web API using a Web Request and deserialize it in JSON and bind data in a grid view.
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.
Parsing List of JSON Elements as List With JSON.Net
11/11/2020 4:02:51 AM.
This article descibes a JSON format where a list of JSON objects are present with no root elements.
A Simple Way To Deserialize JSON
5/6/2020 9:36:37 PM.
In this article you will learn about an easy way to deserialize JSON.
Asp.Net MVC jQuery AJAX Form Submit using Serialize Form Data into a Model
11/6/2019 7:48:27 AM.
In this article, we will learn Asp.Net MVC jQuery AJAX Form Submit using Serialize Form Data into a Model.
The New JSON Serializer In .NET Core 3
9/23/2019 12:17:55 AM.
The release of .NET Core 3 today includes a brand new serializer for JavaScript Object Notation (JSON) under the System.Text.Json namespace.
WCF Opt-In Vs. Opt-Out: Day 8
8/14/2019 3:54:33 AM.
In this article we will discuss two different approaches i.e. Opt-In and Opt-Out used by DataContractSerializer and XMLSerializer. We will also see the difference between DataContractSerializer and XM
WCF Serialization Part 2: Day 7
8/14/2019 3:43:56 AM.
In this article, we create an application, in this application we use a DataContractSerializer to serialize and deserialize data. We also see how we can use SvcUtil.exe
WCF Serialization Part 1: Day 6
8/14/2019 3:19:21 AM.
In this article, we will discuss serialization in WCF. Default serializer in WCF and different kinds of serializers WCF supports.
JSON Serialization Using Newtonsoft JSON Serialize
4/9/2019 5:19:32 AM.
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.
C# Object To JSON Parser (JSON Serializer)
11/25/2018 11:27:47 PM.
This article demonstrate how to parse a C# object into JSON string without using any .Net serializer and third party libraries.
Data Contracts In WCF
9/4/2018 2:24:01 AM.
This article explains Data Contracts In WCF. Data Contract is an agreement between the client and server about the structure of data being exchanged.
Create API With ASP.NET Core - Day Four - Working with Serializer Settings And Content Negotiation In ASP.NET Core API
6/6/2017 4:07:46 AM.
Create API With ASP.NET Core - Working with Serializer Settings And Content Negotiation In ASP.NET Core API.
Working With Jil Serializer And Deserializer Library In C#
7/29/2016 3:02:28 PM.
In this article, you will learn about JIL Serializer and Deserializer library in C#.
Create A JSON File With C#
10/26/2015 12:18:54 AM.
In this article you will learn how to create a JSON file with C# using JavaScriptSerializer Class.
XML Serializer Class for Reading and Writing XML
11/27/2014 11:04:32 AM.
This article introduces the XmlSerializer class for reading and writing XML.
Understand jQuery Ajax Function: Pass JSON Data to Service Method
10/31/2013 12:54:02 PM.
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.
How to Create Config file with xml Serialization
9/29/2012 10:30:36 AM.
This is a simple example of how to use xml serialization to make configuration files.
XML Serialization/Deserialization of Immutable Objects
9/29/2012 5:46:20 AM.
Here’s a brief example of how to serialize and deserialize immutable objects to XML.
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.
Understanding Isolated Storage in Silverlight
6/18/2012 3:19:52 AM.
In the previous article we learned the fundamentals of Isolated Storage and how to write to files in isolated storage using the same classes you use for ordinary file access in a .NET application, such as StreamWriter and BinaryWriter.
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.
Using SOAP Header and SOAP Extensions in a Web Service
5/19/2012 7:06:46 AM.
In this article, we will develop a web service that would authenticate users for web sites. The web site needs to pass the user ID as well as the password for the user. Apart from this the web site also needs to pass the site’s ID and password.
SOAP, .NET, and COM an Introduction - Part III
5/19/2012 7:05:25 AM.
This article starts with the basics of SOAP, SOAP XML model and its data types followed by the integration of SOAP functionality in .NET class library and how .NET developers can take advantages of SOAP in their applications.
SOAP, .NET, and COM an Introduction - Part II
5/19/2012 7:04:37 AM.
This article starts with the basics of SOAP, SOAP XML model and its data types followed by the integration of SOAP functionality in .NET class library and how .NET developers can take advantages of SOAP in their applications.
Converting XML data to CLR object using XmlSerializer
2/14/2011 2:31:38 AM.
My last Post (Consuming Webservice from Silverlight) was all about accessing a web service/API from Silverlight; there I described how to consume an external API, with a sample from GeoName web services. As I said in that article, this article is the continuation. Here I am going to demonstrate how to convert the result output, which is in XML, to a CLR object and of course using it as a datasource in a Silverlight application.
Serialize Object Using Json
9/7/2010 2:37:40 AM.
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.
Introduction to JQuery: Part IX
3/23/2010 6:41:21 AM.
In this article, we will cover few JQuery's AJAX functions.
Form Designer in C# and .NET
8/29/2006 4:54:17 AM.
The FormMaker.NET Application has an undo feature for removing controls you just placed on the form and a fine tuning placement mechanism for positioning the control through the arrow keys.
Memory Game
2/1/2006 11:40:12 PM.
This is a memory game where you can use your favorite pictures (.bmp, jpg, gif).
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.
- Ebook
Source Code: Graphics Programming with GDI+
Graphics Programming with GDI+ is the .NET developer's guide to writing graphics appl...
Download