best place to save application state?

  • Thread starter Thread starter Dee
  • Start date Start date
D

Dee

Hi
I tried to save my application's control data into App.config just to find
out
that it's has a read-only collection. So this is not like good old ini
files.
Are we still supposed to use the registry for this?
Thanks in advance.
Dee
 
Hello Dee,

The registry is one choice for user specific configuration information. Another
is Environment.SpecialFolders.ApplicationData, which is a special folder
that you can drop files into. These files can be in any format you wish (ie:
ini or xml).
 
Thanks Matt

Matt Berther said:
Hello Dee,

The registry is one choice for user specific configuration information. Another
is Environment.SpecialFolders.ApplicationData, which is a special folder
that you can drop files into. These files can be in any format you wish (ie:
ini or xml).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top