摘要:
1,直接调用SerialPort类中的GetPortNames()方法. string[] portList = System.IO.Ports.SerialPort.GetPortNames(); // Com Port StringBuilder sb = new StringBuilder(); if (portList.Length > 1) { for (int i = 0; i < portList.Length; ++i) { string strComPortName = portList[i]; if (strComPort...
阅读全文
摘要:
在程序中,调用WMI的时候,出现一个问题,就是我系统有插了两条内存条,共4G。然而自己只能在程序中查到安装内存为2G,感觉有点不淡定。这是之前的代码。 static ManagementObjectSearcher PhysicalMemory = new ManagementObjectSearcher("select * from Win32_PhysicalMemory"); // 安装内存 string hd = strInstalledMemory + String.Format("{0} GB", Convert.ToInt64(GetVal
阅读全文