2

这很容易创建。我有一个简单的字节数组,证明它在运行时有数据: 在此处输入图像描述

然后我只是做

var bytedata = BitConverter.ToUInt32(byte_array,0);

它编译,但我得到一个Argument Exception运行时说目标数组太小。

来自微软 msdn 文档:

byte[] bytes = { 0, 0, 0, 25 };
int i = BitConverter.ToInt32(bytes, 0);

https://msdn.microsoft.com/en-us/library/bb384066.aspx

4

1 回答 1

6

整数的大小(在 C# 中)为 4 个字节。转换成功至少需要 4 个字节。样本显示只有 3 个。

(不知道为什么消息说“目标数组”。它是“”。)

于 2015-03-24T13:56:45.100 回答