??????Web?????????????????????????????С? ????Щ?????????????????? ??????????????????? ??????????????????????á?
??????????????????C#??????β???????? ???????β???64λ?????????????
?????????
??????????????????????????
????Windows??????
????C#???????
????32λ??????64λ?????????????
????C#???????64λ????????????
??????????????????????????
???????????????????磺IE???????????????????С? ??????ó???????????????????С? ??????????????????????????????????
????Windows??????
????????????? C:Windows egedit.exe??   ???????????У?????”regedit”. ????????????????
?????????????????????????????ɡ?  ?????

?????????е??HKEY_CURRENT_USER??HKEY_LOCAL_MACHINE?е??????????????????????????????????????á?
????C#???????
????C#??????????????????????? using Microsoft.Win32; ???д???????  ???????????? ?????????????????????????
static void Main(string[] args)
{
// ????? ???IE???
RegistryKey localMachine = Registry.CurrentUser;
RegistryKey sougou = localMachine.OpenSubKey(@"SOFTWAREMicrosoftInternet ExplorerMAIN"?? true);
// ???IE ?????
string version = sougou.GetValue("Start Page").ToString();
//  ???IE?????
sougou.SetValue("Start Page"?? "http://www.cnblogs.com/"?? RegistryValueKind.String);
// ???Tanktest?????? ?粻??????????TankTest??
sougou.SetValue("TankTest2"?? "1"?? RegistryValueKind.DWord);
// ??????
sougou.DeleteValue("TankTest2");
// ??????
sougou.CreateSubKey("This is subkey1");
sougou.CreateSubKey("This is subkey2");
// ??????
sougou.DeleteSubKey("This is subkey1");
}