gpt4 book ai didi

c# - C# 中的单字节数组到二维字节数组?

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

我有一个字节数组

byte[] d = new byte[64];

现在我想把它转换成一个二维字节数组,比如..

byte[,] data = new byte[8,8];

谁能帮我解决这个问题

最佳答案

这可能是其中一种方法。

byte[] d = new byte[64];
byte[,] data = new byte[8,8];

int row = 0;
int column = 0;

for(i=0; i < d.Length; i++)
{
row = i%8;
column = i/8;
data [row, column] = d[i];
}

关于c# - C# 中的单字节数组到二维字节数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12541229/

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