The process of translating data structures or object state into a binary format
I saved an object of type DataTable into SQL 2005 database in a field of type varbinary. I want to retrieve …
c# sql ado.net binary-serializationI spent a good portion of time last week working on serialization. During that time I found many examples utilizing …
c# .net serialization xml-serialization binary-serializationI have a C# solution with a referenced dll (also C# with the same .Net version). When I build the …
c# ilmerge binary-serializationI was doing some comparison between BinaryFormatter and protobuf-net serializer and was quite pleased with what I found, but what …
serialization protobuf-net binary-serializationI'm confused - when should I be using XML Serialization and when should I be using Binary Serialization in the .…
c# .net serialization xml-serialization binary-serializationI'm using binary serialization (BinaryFormatter) as a temporary mechanism to store state information in a file for a relatively complex (…
c# .net serialization binary-serializationI have a dictionary in c# private Dictionary<int, UserSessionInfo> userSessionLookupTable = new Dictionary<int, UserSessionInfo>(); Now …
c# dictionary serialization binary-serializationWhen BinaryFormatter deserializes a stream into objects, it appears to create new objects without calling constructors. How is it doing …
c# constructor serialization binary-serializationI have the following piece of code: MemoryStream resultStream = new MemoryStream(); string users = ""//Really long string goes here BinaryFormatter bFormatter = …
c# serialization memorystream deflate binary-serializationI am using BinaryFormatter to do binary serialization of some objects in C#. However, some of the objects contain classes …
c# .net serialization binary binary-serialization