将多个键/值对保存到 app.config
我正在开发一个 winform 应用程序,我在 app.config 文件中存储一些设置(用户名、电子邮件、邮政编码)。
public static void Set(string key, string value)
{
var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
var entry = config.AppSettings.Settings[key];
if (entry == null)
config.AppSettings.Settings.Add(key, value);
else
config.AppSettings.Settings[key].Value = value;
config.Save(ConfigurationSaveMode.Modified);
}
我想将设置保存到 app.config 文件中。所以我有这个代码。 问题是:我只能使用变量密钥一次......所以我无法保存电子邮件和邮政编码。 我正在考虑使用数组,但我不知道如何实现它。有什么建议吗?
private void button_savesettings_Click(object sender, EventArgs e)
{
string key = "username";
string username = textBox_user.Text;
Set(key, username);
}
非常感谢!
I'm working on an winform application, where I store some setting (username, email, zipcode) in the app.config file.
public static void Set(string key, string value)
{
var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
var entry = config.AppSettings.Settings[key];
if (entry == null)
config.AppSettings.Settings.Add(key, value);
else
config.AppSettings.Settings[key].Value = value;
config.Save(ConfigurationSaveMode.Modified);
}
I'd like to save the settings to the app.config file. So I have this code.
Problem is: I can only use the variable key once.... So i can't saven the email and zipcode.
I was thinking of working with an array, but I have no idea on how to implement this. Any suggestions?
private void button_savesettings_Click(object sender, EventArgs e)
{
string key = "username";
string username = textBox_user.Text;
Set(key, username);
}
Many thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一个简单的循环就可以解决这个问题
A simple loop will solve the problem
更好的方法是使用 SQLite for Winform。
当您的数据变量变大时,将内容保存到 app.config 可能会很混乱。
The better way is to use SQLite for Winform.
Saving things to app.config could be messy when your data variable grows bigger.