gpt4 book ai didi

c# - 在 C# 中将字节数组转换为短数组

转载 作者:可可西里 更新时间:2023-11-01 08:13:51 26 4
gpt4 key购买 nike

我目前正在读取一个文件,并希望能够将从文件中获取的字节数组转换为一个短数组。

我该怎么做?

最佳答案

使用Buffer.BlockCopy .

创建字节数组一半大小的短数组,并将字节数据复制到:

short[] sdata = new short[(int)Math.Ceiling(data.Length / 2)];
Buffer.BlockCopy(data, 0, sdata, 0, data.Length);

这是迄今为止最快的方法。

关于c# - 在 C# 中将字节数组转换为短数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1104599/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com