Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Java has a Properties class that is nice for saving basic configuration information, e.g. a gui setting you would like to have persist from one session to the next. It saves and retrieves key value pairs as I recall and is quite simple to use. I have been looking for an analogue of this in C# but without success. Am I missing it?

If there isn't one, is there anything above and beyond simply saving / reading a custrom text file for saving simple application setting? (Measure of "above and beyond" being simplicity).

share|improve this question

3 Answers

up vote 4 down vote accepted

If you create a standard .NET project and go to Properties, then go to Settings, then click to create one, you should be able to accomplish what you want there. That will allow you use Properties.Settings which is good for persisting user settings.

If you want application wide settings, the app.config (compiled as MyApplication.exe.config) is the way to go. You can access these settings via ConfigurationManager.AppSettings (requires System.Configuration assembly reference)

share|improve this answer
I see that the settings in question are actually created as a class named Settings in the namespace ProjectNameSpace.Properties where ProjectNameSpace is the namespace of my project. – John Robertson Oct 12 '10 at 14:10

System.Configuration.ConfigurationManager is what you're looking for. It allows you to save/read key/value pairs to the app.config/web.config file for your application.

If you want to store user specific data, you can also check out the settings file: Using Settings in C#

share|improve this answer

Yes. Search for

Properties.Settings
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.