正如标题所说。
另外,反过来;将关闭RegistryKey配置吗?
我在所有可以找到的文档中四处查看,其中没有提到任何内容。
答案 0 :(得分:6)
它将调用Dispose()
内的Close()
方法,意思是是它将是" disposed
"以及Dispose()
Close()
key
的其他方式。系统注册表项永远不会closed
。只有keys
- closed
的{{1}}。
HKEY_PERFORMANCE_DATA
方法的.NET源代码:
Close
/**
* Closes this key, flushes it to disk if the contents have been modified.
*/
public void Close() {
Dispose(true);
}
方法的.NET源代码:
Dispose