我正在尝试开发两个从COM端口相互通信的c#.NET应用程序..问题出在我的笔记本电脑上我没有连接任何串行设备..我有任何替代方法吗?从c#.net平台创建虚拟comport? 我尝试从这样创建comport但它没有工作..
public partial class Form1 : Form
{
public Form1()
{
SerialPort port = new SerialPort("COM1", 9600);
port.Open();
InitializeComponent();
}
}