这很容易创建。我有一个简单的字节数组,证明它在运行时有数据:
然后我只是做
var bytedata = BitConverter.ToUInt32(byte_array,0);
它编译,但我得到一个Argument Exception
运行时说目标数组太小。
来自微软 msdn 文档:
byte[] bytes = { 0, 0, 0, 25 };
int i = BitConverter.ToInt32(bytes, 0);
这很容易创建。我有一个简单的字节数组,证明它在运行时有数据:
然后我只是做
var bytedata = BitConverter.ToUInt32(byte_array,0);
它编译,但我得到一个Argument Exception
运行时说目标数组太小。
来自微软 msdn 文档:
byte[] bytes = { 0, 0, 0, 25 };
int i = BitConverter.ToInt32(bytes, 0);