摘要:
如果一个类型实现了IDispose接口,但是在退出作用域前未Disposed/Close, 代码分析工具会提出警告: CA2000: Dispose objects before losing scope 例如: public string OpenPort1(string portName) { SerialPort port = new SerialPort(po... 阅读全文
摘要:
在.Net中可以通过如下几种方式获取可用内存:
性能计数器(PerformanceCounter)/设备信息(Devices.ComputerInfo)/Windows管理(WMI) 阅读全文