新手注册表问题
RegistryKey hklm = Registry.LocalMachine;RegistryKey software = hklm.OpenSubKey("Software", true);
RegistryKey microsoft = software.OpenSubKey("Microsoft", true);
RegistryKey windows = microsoft.OpenSubKey("Windows", true);
RegistryKey currentversion = windows.OpenSubKey("CurrentVersion", true);
RegistryKey run = currentversion.OpenSubKey("Run", true);
string[] ValName = run.GetValueNames();
run.SetValue(ValName[0], System.);
请高手解释下以上代码?