gpt4 book ai didi

c# - 如何将 int 数组值复制到字节数组?仅复制 C# 中的值

转载 作者:太空宇宙 更新时间:2023-11-03 18:38:11 24 4
gpt4 key购买 nike

你好我有这种数组

int[] arrayint = new int[32];

它包含

arrayint[0] = 99
arrayint[1] = 121
arrayint[2] = 99
arrayint[3] = 66
...

有没有一种简单的方法可以将整数数组复制到字节数组中,就像我想制作这个字节数组一样

byte[] streambit;

并且它应该与arrayint值相同

我想要这样的输出

streambit[0] = 99
streambit[1] = 121
streambit[2] = 99
streambit[3] = 66
...

最佳答案

streambit = arrayint.Select(i => (byte)i).ToArray();

只需确保您没有大于 255 的值。

关于c# - 如何将 int 数组值复制到字节数组?仅复制 C# 中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12195729/

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