とりあえずセコセコ覚え書き
Enumerable クラスを使う。
byte[] source = { 0x00, 0x01, 0x02, 0x04};
byte[] destination = { 0x00, 0x01, 0x02 };
byte[] result = Enumerable.Concat(source, destination).ToArray();
とりあえずセコセコ覚え書き
Enumerable クラスを使う。
byte[] source = { 0x00, 0x01, 0x02, 0x04};
byte[] destination = { 0x00, 0x01, 0x02 };
byte[] result = Enumerable.Concat(source, destination).ToArray();