求解在C#串口控件的一个问题
我在写串口的奇偶校验位时出现错误,我是从一个下拉菜单中获取到的值
serialPort1.Parity = comboBox5.SelectedItem.ToString();
编译器说转换错误,
该怎么将字符串类型转换成Parity数据类型?
------解决方案--------------------serialPort1.Parity = (System.IO.Ports.Parity)comboBox5.SelectedItem.ToString();
前提是你的下拉必须是Even、Mark、None之类的。