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

I added a file app.config to a C# mono project.

Inside the project I used

foreach (string key in ConfigurationManager.AppSettings)
{
string value = ConfigurationManager.AppSettings[key];
Console.WriteLine("Key: {0}, Value: {1}", key, value);
}

The config file looks like this

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="Key1" value="Kevin" />
<add key="Key2" value="150" />
<add key="Key3" value="Rice" />
</appSettings>
</configuration>

No keys are detected. How can I read the config values?

share|improve this question
You should use ConfigurationManager to write the keys, and then read them back using ConfigurationManager. If that succeeds, look for the XML file that it generated. – Robert Harvey Jun 22 '11 at 14:48
@robert - but I just need to read the config values from a file – danip Jun 22 '11 at 14:49
If what I suggested succeeds, you will know where the XML file should be located, and how it should be properly formatted. Once you know that, you can create the file manually. – Robert Harvey Jun 22 '11 at 14:50
3  
There are three possibilities: 1) It created a file, but you didn't find it yet, 2) It didn't create a file, and you can't do what you want to do, 3) It is storing the information in a file that's already created somewhere else. – Robert Harvey Jun 22 '11 at 14:55
1  
I got it, it was in the debug directory and I had to set the config file to overwrite it. 10x – danip Jun 22 '11 at 14:57
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.