SaveSetting/GetSetting Replacement

  • Thread starter Thread starter Mike in Santa Rosa
  • Start date Start date
M

Mike in Santa Rosa

As an old vb6 programmer coming to C# I was wanting to update my technique
for storing app settings like for form controls state(radioButton, checkBox
selection) and user configurable settings. In vb6 I did this by using the
SaveSetting/GetSetting pairs to store & retrieve the key value pairs
into/from the registry.

What's a better or another way to do this with C#?

Thanks
Mike
 
What about writing to an xml file like the old .ini files?

I don't necessarily need to put this into the registry.

mike
 
Back
Top