首先需要 using System.Collections;
byte data;
data = (byte)serialPort1.ReadByte(); //从串口接收来的数据强制转为byte
byte[] myBytes = new byte[1]; //存入btye数组
myBytes[0] = data;
BitArray myBA = new BitArray(myBytes); //调用BitArray的构造函数
首先需要 using System.Collections;
byte data;
data = (byte)serialPort1.ReadByte(); //从串口接收来的数据强制转为byte
byte[] myBytes = new byte[1]; //存入btye数组
myBytes[0] = data;
BitArray myBA = new BitArray(myBytes); //调用BitArray的构造函数
相关课程