我目前正在为多人游戏编程模拟器
客户端将此信息发送到服务器:ÿÿÿÿ2joinParty 61586 110000140b9f842 1 1 0 -1 1 pw 1
我的程序将joinParty 61586 110000140b9f842 1 1 0 0 1 pw 1
发送到服务器
现在当我发送ÿÿÿÿ
时,它会发送而不是ff ff ff ff
,3f 3f 3f 3f
。
几乎所有数据包都需要ff ff ff ff
,否则服务器会拒绝连接。
如何添加它们?
答案 0 :(得分:0)
byte[] firstArray = new byte[] {0xFF,0xFF,0xFF,0xFF};
byte[] secondArray = [your data here]
byte[] result = firstArray.Concat(secondArray).ToArray();