如何在 php pack('s') 方法中转换为 C# 代码
我想连接到游戏服务器。
标题部分被阻止。
帮帮我吧
ex) php 代码
$obj = new stdClass;
$obj->variable1 = 202;
$obj->variable2 = 123;
$str = json_encode($obj);
$header = "\x0a\xFF\x00\x10".pack("s",strlen($str)).$str;
.....
fwrite($sock, $header);
如何转换为 c# 代码 pack("s",strlen($str))
和 $str
json 类型。
I want to connect to a game server.
Blocked in the header portion.
help me t.t
ex) php code
$obj = new stdClass;
$obj->variable1 = 202;
$obj->variable2 = 123;
$str = json_encode($obj);
$header = "\x0a\xFF\x00\x10".pack("s",strlen($str)).$str;
.....
fwrite($sock, $header);
how to convert to c# code pack("s",strlen($str))
and $str
that json-type.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所以你可以使用 json.net 来进行 json 编码,然后像下面这样:
So you can use json.net to do the json encoding, then something like the following: