/// <summary> /// Send message data /// </summary> public void SendMsg(T msg) { byte[] data = PETool.PackLenInfo(PETool.Serialize <T>(msg)); SendMsg(data); }
/// <summary> /// Send message data /// </summary> public void SendMsg(T msg) { //将数据序列化成相应的格式,然后发送给服务器端或客户端 byte[] data = PETool.PackLenInfo(PETool.Serialize <T>(msg)); SendMsg(data); }