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]
Scott Lysle(5)
Sandeep Mishra(3)
Manas Mohapatra(3)
Jitendra Mesavaniya(2)
Sandeep Singh Shekhawat(2)
Sanjay Kumar(1)
Mithilesh Tata(1)
Anandu G Nath(1)
Fahad Naeem(1)
Anup Hosur(1)
Praveen Raveendran Pillai(1)
Sandeep Sharma(1)
Adil Ansari(1)
Hasibul Haque(1)
Matthew Cochran(1)
Adam Stirtan(1)
Ziggy Rafiq(1)
Esamaldin Mohammed(1)
Adrian Strugała(1)
Sameer Shukla(1)
Vithal Wadje(1)
Sai Sherlekar(1)
Akash Malik(1)
Ibrahim Ersoy(1)
Varun Bansal(1)
Mayur Gujrathi(1)
Prashanth Chindam(1)
Abdul 0(1)
alex s(1)
S.R.Ramadurai, K.Sreenivasan(1)
Bipin Joshi(1)
Resources
No resource found
Serialization and DeSerialization in C#
Oct 21, 2024.
Serialization is the process of converting an object into a storable format, such as XML, JSON, or binary, while deserialization restores it to its original form. Common types include XML, JSON, Binary, and SOAP serialization.
What is JSON Serialization and Deserialization in C#
Mar 27, 2024.
JSON (JavaScript Object Notation) has become a ubiquitous data interchange format, especially in web development. In C#, developers have multiple options for serializing C# objects to JSON and deserializing JSON strings back to C# objects
What is Serialization and Deserialization in C#?
Mar 04, 2024.
Serialization and deserialization are processes used to convert objects into a format that can be easily stored, transmitted, or persisted, and then reconstructed back into objects when needed.
JSON Serialization and Deserialization in C#
Dec 29, 2023.
JSON serialization and deserialization in C#! Learn the ropes with Newtonsoft.Json (Json.NET) or the built-in System.Text.Json. Level up your data interchange skills for seamless system communication.
Real World .NET Examples Of Deserialization Vulnerabilities
Oct 28, 2020.
In this article, you will learn about real-world .NET examples of deserialization vulnerabilities.
Serialization And Deserialization In C# Using Protobuf-net.dll
Dec 23, 2016.
This article describes how to implement serialization and deserialization using Protobuf-net.dll. This article explores Protobuf-net, a .NET library for efficient serialization and deserialization using Google's Protocol Buffers.
JSON Serialization and Deserialization in C#
Jul 08, 2016.
In this article, you will learn about JSON serialization and deserialization in C#. We can implement JSON Serialization/Deserialization by using JavaScriptSerializer class, DataContractJsonSerializer class, JSON.NET library.
Serialization and Deserialization in C#
Jun 27, 2016.
In this article you will learn about serialization in C# and deserialization In C#.
Serialization And Deserialization in .NET
Dec 27, 2015.
Serialization in .NET transforms objects into a format suitable for storage or transmission, facilitating data interchange. Deserialization reverses this process, reconstructing objects from the serialized form, enabling seamless data transfer and persistence across applications.
JSON Serialization And Deserialization Using JSON.NET Library In C#
Nov 19, 2015.
In this article, you will learn how to serialize and deserialize JSON objects using the JSON.NET library. JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write and easy for machines to parse and generate. JSON is a text format that is completely language-independent.
XML Serialization and Deserialization in C#
May 06, 2014.
In this article I would like to demonstrate a generic XML Serialization/Deserialization process.
Introduction To Deserialization In Java
May 06, 2013.
In this article we discuss Deserialization in java.
Serialization and Deserialization of JSON Data
Apr 10, 2013.
JavaScript Object Notation (JSON) is an open and text-based data exchange format.
Insecure Deserialization
Oct 09, 2020.
In this article, you will learn about Insecure Deserialization.
Deserialization Basics
Oct 08, 2020.
In this article, you will learn about the basics of Deserialization.
CLR Object And JSON Serialization And Deserialization
Aug 27, 2012.
This article demonstrates how to serialize and deserialize CLR objects for web-based applications.
Convert your Data Transfer Object to XML (XML Serialization and Deserialization)
Feb 21, 2011.
How to convert Business Entity/ Data Transfer Object to XML string and also XML string to Business Entity/ Data Transfer Object.
XML Serialization/Deserialization of Immutable Objects
Apr 19, 2010.
Here’s a brief example of how to serialize and deserialize immutable objects to XML.
Newtonsoft.Json vs. System.Text.Json: Comparative Analysis
Apr 17, 2024.
In the world of .NET development, handling JSON serialization and deserialization is a common task, especially when dealing with web APIs. In this article, we'll compare and contrast these two libraries, exploring their features, examples, advantages, and disadvantages.
Polymorphic serialization using System.Text.Json
Apr 12, 2024.
Polymorphic serialization is the process of serializing and deserializing objects of different types that share a common base type. This allows us to preserve the specific type information of each object, which is crucial when we want to deserialize the objects back into their original types.
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.
Create Generic HttpClient Call Function With Error Handling In C#
Mar 09, 2023.
This article presents a step-by-step guide on how to create a generic HttpClient call function in C# that can handle different request methods, request body types, response types, and error handling using optional parameters. By following the provided code examples and explanations, readers can learn how to simplify HTTP requests in their C# applications and reduce the risk of errors.
How To Work With Avro Data Type In .NET Environment
Mar 02, 2022.
The article shows an automated way of reading Avro data in .NET applications. It includes reading the Avro schema, generating C# models, and deserializing the data. The article contains also practical examples of usage: JSON and Avro benchmarks and Azure Blob Storage client.
Pickle In Python
Feb 07, 2022.
The article explains Serialization / Deserialization process of object in Python
Consuming Web Service In ASP.NET MVC
Feb 24, 2017.
Consuming web services in ASP.NET MVC involves adding a service reference, generating a proxy class, and utilizing HTTP clients like HttpClient or WebClient. Data exchange occurs through SOAP or REST protocols, handling JSON or XML responses. Authentication, authorization, error handling, and data binding are crucial aspects.
Difference Between JSON Object and JavaScript Object
May 25, 2014.
JSON objects and JavaScript objects share similarities but differ in syntax and usage. JSON is a text-based data interchange format, while JavaScript objects are native data structures. JSON follows a stricter syntax and is used primarily for data transfer.
InProc Session State Mode in ASP.Net
Oct 14, 2013.
This article explains the InProc Session State Mode in ASP.NET. The InProc Session State Mode is the default Session State Mode. We can host multiple websites/web applications on a single IIS. Each application runs in a separate Application Domain.
Serialization Version Control In Java
Jul 18, 2013.
In this article I will be explaining about the version control in serialization.
An Application Framework for Editing Objects at Run Time in VB.NET
Nov 09, 2012.
This article describes a generic application framework that may be of some use in projects that would need an interface similar to Visual Studio. The application demonstrates approaches to providing a toolbox, a workspace, an object treeview, and an object editor.
XML Serialation and Deserialation in VB.NET
Nov 09, 2012.
The article helps you to write and read XML.
Create Your Own Custom File Type in VB.NET
Nov 09, 2012.
This article describes a simple approach to creating a custom file type. A separate module is used to serialize and deserialize files of this user defined file type.
Build your own Visual Studio: An Application Framework for Editing Objects at Run Time
Nov 09, 2012.
This article describes a generic application framework that may be of some use in projects that would need an interface similar to Visual Studio.
Binary Serialization of a Class in a File
Mar 02, 2012.
In this article I will demonstrate how to use Binary serialization of a class in a file.
Prerequirement of REMOTING
Apr 07, 2011.
It is Microsoft technology for developing distributed applications, replacing traditional DCOM. All distributed technology needs consuming libraries present on remote machines.
Read XML in C#
Sep 24, 2010.
Learn to parse and manipulate XML data in C# effortlessly. Utilize XML readers, XPath, or LINQ to XML for efficient XML processing. Handle XML documents, elements, attributes, and namespaces seamlessly within your C# applications.
Parsing BizTalk Messages in .NET Components Through Orchestration
Apr 30, 2009.
This article discusses how to parse BizTalk messages in .NET Components through Orchestration.
Build Your Own Visual Studio: An Application Framework for Editing Objects at Run Time
Dec 22, 2006.
This article describes a generic application framework that may be of some use in projects that would need an interface similar to Visual Studio. The application demonstrates approaches to providing a toolbox, a workspace, an object treeview, and an object editor.
Create Your Own Custom File Type
Dec 08, 2006.
This article describes a simple approach to creating a custom file type.
.NET Class For Serialization
Jul 14, 2003.
In the .NET framework, serialization is the process of converting objects into a format that can be easily stored, transmitted, or reconstructed later. .NET provides various classes and libraries to facilitate serialization. One of the key classes for serialization in .NET is the System.Runtime.Serialization namespace, which contains essential classes and attributes for this purpose.
Web Services: Basics and Beyond Part 2
Apr 30, 2002.
This part shall demonstrate how a simple web service can be created quickly using Visual Studio.Net.
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.