gpt4 book ai didi

c# - 如何读取字节数组中的前 3 个字节

转载 作者:行者123 更新时间:2023-11-30 13:08:23 24 4
gpt4 key购买 nike

我有字节数组,我只需要读取前 3 个字节而不是更多。

C# 4.0

最佳答案

这些够了吗?

IEnumerable<byte> firstThree = myArray.Take(3);
byte[] firstThreeAsArray = myArray.Take(3).ToArray();
List<byte> firstThreeAsList = myArray.Take(3).ToList();
byte[] firstThreeAsArraySlice = myArray[..3];

关于c# - 如何读取字节数组中的前 3 个字节,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3784980/

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