Anda di halaman 1dari 1

static void Main(string[] args)

{
byte[] test;
test = new byte[25];

test[24] = 100;

Console.WriteLine(test[0]);

Console.ReadKey();

byte[,] test;
test = new byte[10 , 25];

test[10, 24] = 100;

Console.WriteLine();

Console.ReadKey();

Anda mungkin juga menyukai