ホーム
サンプルコード
雑記
デザインパターン
ソフトウェア
1 2 3 4 5 6 7 8 9
byte[] bytes; int val = 100; bytes = BitConverter.GetBytes(val); foreach (byte b in bytes) { Console.Write(string.Format("{0,3:X2}", b)); }