- All (you wanted to know) about the Registry with C#
- Working with Registry in .NET
- Quick Registry class in C#
[[MORE]]
My sample code:
RegistryKey rkHKLM = Registry.LocalMachine;
RegistryKey rkRun;
try{
rkRun = rkHKLM.OpenSubKey("Software\Microsoft\Windows\CurrentVersion\Run",true);
listBox1.Items.Add( rkRun.GetValue("NeroFilterCheck") );
}
catch{
MessageBox.Show("Error! I can't create the registry.");
rkHKLM.Close();
return;
}
J~~洗啥??...
回覆刪除會英文好像不夠阿...
程式語言也是一種存在於無形的語言吧...