↧
Serialization with C# and .NET
What is Serialization? In the world of software development, serialization is the process of converting an object into a format that allows it to either be persisted (saved) to disk or memory, or to be...
View ArticleBinary Serialization with C# and .NET
In the previous post, we discussed XML serialization. In this short article we are going to take a look at binary serialization via the BinaryFormatter class. As we mentioned in a previous article,...
View Article