我已經完成了Windows窗體應用程序的維護工作,該窗體應用程序包含Windows Form_Load窗體上的RegistryKey代碼。但是我不知道RegistryKey代碼正在執行哪些工作snippet.Here是我的代碼,這是令我費解的..RegistryKey在Windows窗體應用程序上執行的操作
try
{
RegistryKey rkStartUp = Registry.LocalMachine;
RegistryKey StartupPath;
StartupPath = rkStartUp.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Run", true);
if (StartupPath.GetValue("ABCDXYZ") == null)
{
StartupPath.SetValue("ABCDXYZ", Application.ExecutablePath, RegistryValueKind.ExpandString);
}
}
catch
{
}
任何幫助解釋它將不勝感激。