随笔分类 - C#
摘要:安装包 MessagePack 定义Person类 [MessagePackObject] public class Person { [Key(0)] public string Name { get; set; } [Key(1)] public int Id { get; set; } [Ke
. . .
摘要:安装包 Google.Protobuf Google.Protobuf.Tools Google.Protobuf.Tools中存在protoc.exe可以用来编译.proto文件 编写 Person.proto 文件 syntax = "proto3"; message Person { stri
. . .