combobox 控件
this.comboBox1.TabIndex = 1;
this.comboBox1.Items.Add("COM0");
comboBox1.SelectedItem.ToString());
String 字符串操作
//字符串 转 byte[]
byte[] Data1 = System.Text.Encoding.Default.GetBytes(str);
//获取字符串长度
System.Text.Encoding.Default.GetByteCount(str)
byte[] 使用方法
ComWriteCommand(new byte[] { 0x1d, 0x21, 0x01 });