Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在基于 c# 服务的应用程序中添加一些注册密钥,但它不起作用,它没有给我任何期望,也没有在注册中创建密钥。
Microsoft.Win32.RegistryKey key; key = Microsoft.Win32.Registry.CurrentUser.CreateSubKey("Settings"); key.SetValue("version", "0.0.0.1"); key.Close();
该服务作为系统运行。