gpt4 book ai didi

c# - 如何将 IEnumerable 转换为字节数组

转载 作者:行者123 更新时间:2023-12-04 02:09:16 25 4
gpt4 key购买 nike

我需要将多个数组合并为一个。我发现这似乎是一个很好的方法:

IEnumerable<byte> Combine(byte[] a1, byte[] a2, byte[] a3)
{
foreach (byte b in a1)
yield return b;
foreach (byte b in a2)
yield return b;
foreach (byte b in a3)
yield return b;
}

但是,我对IEnumerable 不是很熟悉。如何将结果转换回 byte[] 以便我可以进一步使用它?

谢谢。

最佳答案

不是迭代它们只是 linq 的 .Concat:

var joint = a1.Concat(a2).Concat(a3);

如果你想把它作为一个数组返回:

joint.ToArray();

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

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