vote up 5 vote down star

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?

flag

5 Answers

vote up 9 vote down check

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|flag
vote up 1 vote down

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|flag
vote up 0 vote down

You are missing the reference to System.Configuration.

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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