---
title: "What is serialization?"  
description: "What is serialization?"  
author: "Sumit Kesarwani"  
published: 2014-01-25  
updated: 2020-09-18  
canonical: https://www.mindstick.com/interview/1875/what-is-serialization  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# What is serialization?

Serialization is the process of converting an object into a stream of bytes.

Deserialization is the opposite process of creating an object from a stream of bytes. Serialization / Deserialization is mostly used to transport objects.

## Answers

### Answer by Sumit Kesarwani

Serialization is the process of converting an object into a stream of bytes.

Deserialization is the opposite process of creating an object from a stream of bytes. Serialization / Deserialization is mostly used to transport objects.


---

Original Source: https://www.mindstick.com/interview/1875/what-is-serialization

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
