C# 的隨手筆記 1 - 數值轉換 - Byte 轉 2進位的陣列

就是一個簡單的 usb hid 常用的Function 分享

讀入一個 Byte 用List<int>來接

public List<int> BytesToList(byte byte_value)
        {

            List<int> TMP_List1 = new List<int>();

            int int_value = (int)byte_value;


            for (int i = 0; i < 8; i++)
            {
                int TMP_int1 = (int_value) % 2;
                TMP_List1.Add(TMP_int1);
                int_value = int_value / 2;
            }


            return TMP_List1;
        }