Top "Protobuf-csharp-port" questions

"Protocol Buffers" is a binary serialization format and technology, released to the open source community by Google in 2008.

How to convert string to ByteString when using protobuf?

I want to convert a string object to ByteString.I have tried to use ByteString.CopyFrom() function to convert,but …

c# protocol-buffers protobuf-csharp-port
Protocol buffers and enums combinations?

This is my proto file : message MSG { required MsgCodes MsgCode = 1; optional int64 Serial = 2; // Unique ID number for this person. required …

java c# enums protocol-buffers protobuf-csharp-port
Google Protobuf 3.0.0 assemblies for C#

In our project we successfully use Google Protobuf for C++. Now there is a need to compile the same *.proto …

c# .net assemblies protocol-buffers protobuf-csharp-port
How to set a value for a protobuf map<string, string> property in C#

I have the following protoc3 message: message LocalizedString { map<string, string> translations = 1 } When compiled into C#, I get …

c# protocol-buffers grpc protobuf-csharp-port