在 VB.NET 中,我可以像这样在 Windows 注册表中创建一个键:
My.Computer.Registry.CurrentUser.CreateSubKey("TestKey")
我可以检查一个值是否存在于这样的键中:
If My.Computer.Registry.GetValue("HKEY_LOCAL_MACHINE\MyKey", _
"TestValue", Nothing) Is Nothing Then
MsgBox("Value does not exist.")
Else
MsgBox("Value exist.")
End If
但是如何检查注册表中是否存在具有特定名称的键?