标签: c#
如何将锯齿状的字节数组转换为单个维度。示例byte[][] s1_byte。将其转换为byte[]。
byte[][] s1_byte
byte[]
答案 0 :(得分:1)
使用SelectMany
int[][] i = new[] {new[]{1,1},new[]{2,2}}; // [1,1],[2,2] int[] result = i.SelectMany(x => x).ToArray(); // [1,1,2,2]