字符串转4个byte数组
字符串如何转成大小为4的4byte数组?
整数如何转成大小为4的4byte数组?
------解决方案--------------------BitConverter 方法
http://msdn.microsoft.com/zh-cn/library/system.bitconverter_methods%28v=vs.110%29.aspx
------解决方案--------------------要是转成byte数组:encoding.编码方式.GetBytes()
要是转成4个byte数组,要先把字符串分割成4部分,再转
------解决方案--------------------整数转用BitConverter
字符串得看编码和长度了