Y
Yogi_Bear_79
I've been accesing the registry in the two following ways:
using (RegistryKey SubKey = Registry.LocalMachine.OpenSubKey(sSubKey + x))
using (RegistryKey Key = Registry.LocalMachine.CreateSubKey(sSubKey + x))
Should I close the Keys after either or both of these actions? Can you
explain the benifits of either action?
using (RegistryKey SubKey = Registry.LocalMachine.OpenSubKey(sSubKey + x))
using (RegistryKey Key = Registry.LocalMachine.CreateSubKey(sSubKey + x))
Should I close the Keys after either or both of these actions? Can you
explain the benifits of either action?