gpt4 book ai didi

C#,如何将字节数组减半?

转载 作者:太空宇宙 更新时间:2023-11-03 17:07:23 26 4
gpt4 key购买 nike

我有一个这样定义的字节数组

byte[] fileContents = File.ReadAllBytes(zfoFileName);

如何获取 fileContents 字节数组的前 1/2?

换句话说,如果数组的上限是 10,我希望新的字节数组具有 fileContents 的前 5 个值。

提前致谢

最佳答案

byte[] half = new byte[fileContents.Length / 2];
Array.Copy(fileContents, half, half.Length);

关于C#,如何将字节数组减半?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2554589/

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