Top "Protobuf-net" questions

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.

protobuf-net NOT faster than binary serialization?

I wrote a program to serialize a 'Person' class using XMLSerializer, BinaryFormatter and ProtoBuf. I thought protobuf-net should be faster …

serialization protobuf-net
Are there any Tutorials for Protobuf-net?

I 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-net
protobuf and List<object> - how to serialize / deserialize?

I have a List<object> with different types of objects in it like integers, strings, and custom types. …

c# .net-3.5 protobuf-net
Does protobuf-net support nullable types?

Is it possible to generate nullable members in protobuf-net? message ProtoBuf1 { optional Int32? databit = 1; optional Nullable<bool> databool = 2; }

c# protocol-buffers protobuf-net
protobuf-net: Serializing an empty List

we 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-net
Protobuf-Net error message: No Serializer defined for type: System.Type

I am getting the following error message when trying to serialize List<Tuple<string, Type, object>>: …

c# protocol-buffers protobuf-net system.type
Protocol buffers detect type from raw message

Is it possible to detect the type of a raw protocol buffer message (in byte[]) I have a situation where …

c# .net protocol-buffers protobuf-net