gpt4 book ai didi

c# - 将值添加到 app.config 并检索它们

转载 作者:IT王子 更新时间:2023-10-29 03:42:14 26 4
gpt4 key购买 nike

我需要在 app.Config 中插入键值对,如下所示:

<configuration>
<appSettings>
<add key="Setting1" value="Value1" />
<add key="Setting2" value="Value2" />
</appSettings>
</configuration>

当我在 google 中搜索时,我得到了以下代码片段

System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); // Add an Application Setting.

config.AppSettings.Settings.Add("ModificationDate",
DateTime.Now.ToLongTimeString() + " ");

// Save the changes in App.config file.

config.Save(ConfigurationSaveMode.Modified);

上面的代码不起作用,因为在我使用的 .NET 2.0 的 System.Configuration 命名空间中找不到 ConfigurationManager。如何以编程方式将键值对添加到 app.Config 并检索它们?

最佳答案

您是否缺少对 System.Configuration.dll 的引用? ConfigurationManager 类就在那里。

编辑:System.Configuration 命名空间在 mscorlib.dll、system.dll 和 system.configuration.dll 中有类。您的项目始终包含 mscorlib.dll 和 system.dll 引用,但必须将 system.configuration.dll 添加到大多数项目类型,因为它默认不存在...

关于c# - 将值添加到 app.config 并检索它们,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/925638/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com