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.

Converting Stream to String and back...what are we missing?

I want to serialize objects to strings, and back. We use protobuf-net to turn an object into a Stream and …

c# .net serialization deserialization protobuf-net
Using Protobuf-net, I suddenly got an exception about an unknown wire-type

(this is a re-post of a question that I saw in my RSS, but which was deleted by the OP. …

c# protobuf-net
Getting started with protobuf-net

I'm trying to get started with protobuf.net. I've downloaded the latest version from here, implemented a [ProtoContract] class, and …

c# protobuf-net
Dynamic Object Serialization

I tried to serialize a DynamicObject class with BinaryFormatter, but: Output file is too big, not exactly wire-friendly Circular References …

c# serialization dynamic protobuf-net
Protobuf-net serialization/deserialization

I checked but seem to be unable to see how to directly serialize a class to a byte array and …

c# serialization bytearray protocol-buffers protobuf-net
How does protocol buffer handle versioning?

How does protocol buffers handle type versioning? For example, when I need to change a type definition over time? Like …

protocol-buffers protobuf-net
How to model HashMap/Dictionary in the ProtoBuf efficiently

I have a protobuf file serialized by .NET code and I would like to consume it into Java. In the .…

java serialization protocol-buffers protobuf-net
Does protobuf-net have built-in compression for serialization?

I was doing some comparison between BinaryFormatter and protobuf-net serializer and was quite pleased with what I found, but what …

serialization protobuf-net binary-serialization
How to choose between protobuf-csharp-port and protobuf-net

I've recently had to look for a C# porting of the Protocol Buffers library originally developped by Google. And guess …

c# protobuf-net
Protocol buffers in C# projects using protobuf-net - best practices for code generation

I'm trying to use protobuf in a C# project, using protobuf-net, and am wondering what is the best way to …

c# visual-studio protocol-buffers protobuf-net