这是一段注册表相关的代码,报null
System.NullReferenceException
RegistryKey hkml = Registry.CurrentUser;
RegistryKey software = hkml.OpenSubKey("Software", true);
RegistryKey aimdir = software.OpenSubKey("System.Runtime.InteropServices", true);
RegistryKey mytest = aimdir.OpenSubKey("System.Runtime.InteropServices.InAttribute.Root", true);
registData = mytest.GetValue(name).ToString();
aimdir 是 null。
报错位置是这行 mytest