문제

I am using the below code lifted from MSDN, but its not updating my app.config file. Am I missing something? Please help.

private void button1_Click(object sender, EventArgs e)
{
    Properties.Settings.Default.reliefPath = "reliefPath";
    Properties.Settings.Default.Save();
}

I am targeting .NET 2.0.

도움이 되었습니까?

해결책

The app.config itself is never updated. Instead a copy is created in the isolated storage for your application. I believe it's under your profile's AppData\Roaming directory. That file is then loaded next time you run your application

다른 팁

The settings may be saved in your App Data folder, in a user.config file: Properties.Settings.Default.Save(); -> Where is that file

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top