首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动平台 >

联通sgip1.2 socket提交信息体由主机字节转为网络字节产生地址越界,该怎么解决

2012-03-16 
联通sgip1.2 socket提交信息体由主机字节转为网络字节产生地址越界C# codepublic uint MessageLength{get{

联通sgip1.2 socket提交信息体由主机字节转为网络字节产生地址越界

C# code
        public uint MessageLength        {            get            {                return (uint)IPAddress.NetworkToHostOrder((int)_messageLength);            }            set            {                _messageLength = (uint)IPAddress.HostToNetworkOrder((int)value);            }        }


C# code
public byte[] GetBytes()        {            byte[] result = new byte[this.GetLength()];                     Buffer.BlockCopy(_head.GetBytes(), 0, result, 0, _head.GetLength());            Buffer.BlockCopy(_body.GetBytes(), 0, result, _head.GetLength(), _body.GetLength());            return result;        }


[解决办法]
111

热点排行