2 つの ASCII バイトを 1 つの ushort にパックできるようにする必要があります。どうすればこれを達成できますか?
これまでのところ、私は持っています:
for (var i = 0; i < asciiBytes.Length; i += 2)
{
// Get two bytes from an ASCII byte array.
var sub = new[] { asciiBytes[i], asciiBytes[i + 1] };
// Pack the two bytes into a ushort
// ????????
}