//从Protobuffer类型初始化 public void FromPB(ActionUselessV1 v) { if (v == null) { return; } }
//Protobuffer从MemoryStream进行反序列化 public bool FromMemoryStream(MemoryStream protoMS) { ActionUselessV1 pb = ProtoBuf.Serializer.Deserialize <ActionUselessV1>(protoMS); FromPB(pb); return(true); }
//转化成Protobuffer类型函数 public ActionUselessV1 ToPB() { ActionUselessV1 v = new ActionUselessV1(); return(v); }