Posts

Showing posts with the label C# Serialization

C# | Serialization

Image
In C#, serialization is the process of converting object into byte stream so that it can be saved to memory, file or database. The reverse process of serialization is called deserialization. Serialization is internally used in remote applications. C# Deserialization In C# programming, deserialization is the reverse process of serialization. It means you can read the object from byte stream. Here, we are going to use  BinaryFormatter.Deserialize(stream)  method to deserialize the stream.