gpt4 book ai didi

c# - 在 app.config 文件中写入值

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

任何人都可以帮助我如何使用 C# 在 app.config 文件中设置/存储值,这可能吗?

最佳答案

试试下面的代码:

    Configuration config = ConfigurationManager.OpenExeConfiguration(Application.ExecutablePath);
config.AppSettings.Settings.Add("YourKey", "YourValue");
config.Save(ConfigurationSaveMode.Minimal);

它对我有用:-)

关于c# - 在 app.config 文件中写入值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4758598/

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