Answers for "c# register write value"

C#
0

c# register write value

// Open the key from the specified location
RegistryKey softwareKey   = Registry.LocalMachine.OpenSubKey("Software", true);

// Create a new key to store your value
RegistryKey NameKey    = SoftwareKey.CreateSubKey("keyName");

// Set the key value
NameKey.SetValue("yourvalue");
Posted by: Guest on July-02-2021

C# Answers by Framework

Browse Popular Code Answers by Language