erlang自定义二进制协议
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
246 B

using GenProto;
phoneNumber phoneNumber = new phoneNumber()
{
number = new test { aa = "hello" },
type = 100
};
var data = phoneNumber.Serialize();
var ss = new phoneNumber();
ss.Deserialize(data);
Console.WriteLine("Hello, World!");