up vote 6 down vote favorite
share [g+] share [fb]

In .net frameworks 1.1, I use

System.Configuration.ConfigurationSettings.AppSettings["name"];

for application settings. But in .Net 2.0, it says ConfigurationSettings is obsolete and to use ConfigurationManager instead. So I swapped it out with this:

System.Configuration.ConfigurationManager.AppSettings["name"];

The problem is, ConfigurationManager was not found in the System.Configuration namespace. I've been banging my head against the wall trying to figure out what I'm doing wrong. Anybody got any ideas?

link|improve this question

80% accept rate
feedback

5 Answers

up vote 9 down vote accepted

You have to reference the System.configuration assembly (note the lowercase)

I don't know why this assembly is not added by default to new projects on Visual Studio, but I find myself having the same problem every time I start a new project. I always forget to add the reference.

link|improve this answer
feedback

If you're just trying to get a value from the app.config file, you might want to use:

ConfigurationSettings.AppSettings["name"];

That works for me, anyways.

/Jonas

link|improve this answer
feedback

You are missing the reference to System.Configuration.

link|improve this answer
feedback

Visual Studio doesn't make it obvious which assembly reference you need to add. One way to find out would be to look up ConfigurationManager in the MSDN Library. At the top of the "about ConfigurationManager class" page it tells you which assembly and DLL the class is in.

link|improve this answer
feedback

System.Configuration us refer to System.configuration (not the small case for configuration, in .net 2.o it reefers to System.Configuration.dll.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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