问题标签 [protobuf-csharp-port]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
26 浏览

.net - Protobuf:重复应该发出集合访问器

。网

protobuff 编译器生成一个类,其中重复字段只读的

如何让他们{得到; 放; }?

假设我有这个原型代码:

Protobuff 编译器生成这个:

如何让他产生这样的东西:

0 投票
2 回答
750 浏览

.net - 将重复字段转换为列表

。网

我的 protobuf 文件:

我有一个具有此属性的课程:

Protobuf 编译器生成RepeatedField集合,当我试图将这个集合传递给我时,ListOfLists.AddRange()我得到了这个错误:

cannot convert from 'Google.ProtobufCollections.RepeatedField<gRPC.ListOfStrings>' to 'System.Collection.Generic.IEnumerable<System.Collections.Generic.List<string>>

如何处理?