c#中用socket发送数据怎么发送int类型的?

如题~能发送么?怎么写代码?
2025-01-04 09:51:09
推荐回答(2个)
回答1:

Socket只能发送byte数组
你可以把int转换为byte数组,如
byte[] abyte = BitConverter.GetBytes(10);

回答2:

发是byte[],收也是byte[],但是收到了以后可以直接 int i = (int)byte[0] ,就显示为int了