Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
那么让我们的类在文件夹中具有属性如何从它们中生成 .proto 标记文件(以获取例如 C++ 代码)?
“具有属性的类”是指适合 protobuf-net 的属性吗?如果是这样,protobuf-net 有一个GetProto方法可以提供基于根类型的模式:
GetProto
string proto = Serializer.GetProto<SomeType>();
尽管有相反的传言,但 v2 中的这种方法已经重新实现了相当长的一段时间。