I can get/set registry value using Microsoft.Win32.Registry class. For example
Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run", "MyApp", Application.ExecutablePath);
But i can't delete any value. How to delete registry value?