C#.NETのサンプルコードを掲載しています。
      
int型 → byte[]型 へ変換
int型からbyte[ ]型へ変換するサンプルコードです。

テストコード
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));
}

出力
64 00 00 00

      
変換処理







Copyright (C) 2011 - 2017 猫の気ままなC#日記