c# – 将处理RegistryKey也关闭它吗?

前端之家收集整理的这篇文章主要介绍了c# – 将处理RegistryKey也关闭它吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
正如标题所说.

另外,反过来;会关闭一个RegistryKey处理它吗?

我已经查看了我能找到的所有文档,并且在任何地方都没有提到这一点.

解决方法

它将调用Close()中的Dispose()方法,这意味着它将被“处理”,而Dispose()的其他方式将是Close()键.系统注册表项永远不会关闭.只有正在关闭的键 – HKEY_PERFORMANCE_DATA.

Close方法的.NET源代码

/**
 * Closes this key,flushes it to disk if the contents have been modified.
 */
public void Close() {
    Dispose(true);
}

.NET source line 220

Dispose方法的.NET源代码

[System.Security.SecuritySafeCritical]  // auto-generated
private void Dispose(bool disposing) {
      if (hkey != null) {
           if (!IsSystemKey()) {
              try {
                  hkey.Dispose();
                }
                catch (IOException){
                    // we don't really care if the handle is invalid at this point
                }
                finally
                {
                    hkey = null;
                }
            }
            else if (disposing && IsPerfDataKey()) {
            SafeRegistryHandle.RegCloseKey(RegistryKey.HKEY_PERFORMANCE_DATA);
            }  
      }
}

.NET source line 227

原文链接:https://www.f2er.com/csharp/244954.html

猜你在找的C#相关文章