Wie bekomme ich die 7 Zeilen vom Byte-Array untereinander??? Hat da jemand ein Code-Beispiel für mich?
Hier, bitte:
byte[,] array =
{
{ 32, 32, 67, 67, 32, 32, 32, 35, 32, 35, 32 },
{ 32, 67, 32, 32, 67, 32, 32, 35, 32, 35, 32 },
{ 67, 32, 32, 32, 32, 32, 35, 35, 35, 35, 35 },
{ 67, 32, 32, 32, 32, 32, 32, 35, 32, 35, 32 },
{ 67, 32, 32, 32, 32, 32, 35, 35, 35, 35, 35 },
{ 32, 67, 32, 32, 67, 32, 32, 35, 32, 35, 32 },
{ 32, 32, 67, 67, 32, 32, 32, 35, 32, 35, 32 }
};
for(int i = 0; i < array.GetLength(0); i++ )
{
for(int j = 0; j < array.GetLength(1); j++ )
{
Console.Write($"{array[i, j]} ");
}
Console.Write('\n'); // new line
}
Grüße
|