An independent implementation of Google's protobuf binary serialization format, protobuf-net approaches the problem-space with common .NET coding styles, but retaining the high performance, dense output and cross-platform interoperability.
I wrote a program to serialize a 'Person' class using XMLSerializer, BinaryFormatter and ProtoBuf. I thought protobuf-net should be faster …
serialization protobuf-netI have been reading about protobuf-net and it is amazing! Are there any tutorials that I could use? (More specifically …
c# .net protocol-buffers protobuf-netI have a List<object> with different types of objects in it like integers, strings, and custom types. …
c# .net-3.5 protobuf-netIs it possible to generate nullable members in protobuf-net? message ProtoBuf1 { optional Int32? databit = 1; optional Nullable<bool> databool = 2; }
c# protocol-buffers protobuf-netwe have some problems with serializing an empty list. here some code in .NET using CF 2.0 //Generating the protobuf-msg ProtoBufMessage …
c# .net serialization protobuf-netI am getting the following error message when trying to serialize List<Tuple<string, Type, object>>: …
c# protocol-buffers protobuf-net system.typeIs it possible to detect the type of a raw protocol buffer message (in byte[]) I have a situation where …
c# .net protocol-buffers protobuf-netMarc mentioned on stackoverflow that it will be possible in v2 of protobuf-net to use ProtoInclude attribute (or similar approach) …
c# protocol-buffers protobuf-net