using System;
public class Program
{
public static void Change(byte[] bytes)
bytes[0] = 0xAA;
}
public static void Main()
var bytes = new byte[2]
0xBB,
0xCC,
};
Console.WriteLine(bytes[0]);
Change(bytes);