I am trying to understand protobuf-net\'s Dictionary/KeyValuePair support. We would like to use the underlying binary stream and the generated proto file from java, but the
To get this for work add a new message to the generated .proto file that looks like this.
message Pair_String_Int32 { required string Key = 1; required int32 Value = 2; }
Then protoc will be able to create the corresponding code for Java.