我正在编写一个软件,我需要检测USB-> UART是否没有连接它。目前我正在这样做:
SerialPort coms;
try
{
coms = new SerialPort(comPort);
//A bunch of stuff about BaudRates etc...
coms.Open();
}
catch(/*Lots of different exceptions*/)
我想知道是否有更好的方法可以做到这一点。或者即使我正确地做到了。