我们正在运行一个Python脚本(它使用多线程)在一个基于Amazon-EC2的Windows 2008机器上执行一些工作。当机器启动时,我可以看到它开始执行Python脚本,然后我开始在事件日志中看到如下消息:
Windows detected your registry file is still in use by other applications or services. The file will be unloaded now. The applications or services that hold your registry file may not functi
在C#中,class Process继承自实现IDisposable的class Component,因此我可以在任何Process对象上调用Dispose()。我真的非得这么做吗?我怎么知道我是否真的必须这么做呢? var allProcesses = System.Diagnostics.Process.GetProcesses(); // output process names here
现在,看起来我有了一个Process对象数组,