c#中如何将16进制byte数组转为int?反过来呢?

如{00,01,86,A0}转为100000
2024-10-30 19:11:41
推荐回答(1个)
回答1:

BitConverter.ToInt32(array, 0);

BitConverter.GetBytes(Int32);

需要注意的是这个的字节顺序和你的是反的