gpt4 book ai didi

c# - 从 app.config 文件中读取字符串

转载 作者:太空宇宙 更新时间:2023-11-03 17:30:08 26 4
gpt4 key购买 nike

我的问题与最流行的连接字符串无关。我能找到的另一个唯一帮助是没有使用引用的人。

我正在尝试做的事情:我在 app.config 文件中存储了一个字符串,如下所示:

<applicationSettings>
<App_5.Properties.Settings>
<setting name="Location_Name" serializeAs="String">
<value>String I want</value>
</setting>

我的拉线代码是:

string Loc_Name = ConfigurationManager.AppSettings["Location_Name"];

我添加并使用了引用。当我运行该程序时,我的返回值始终为 null

最佳答案

您将其存储在 app.config 中的错误位置。对于单个名称/值对,请使用 appSettings。然后问题中的检索代码将起作用。

<configuration>
<appSettings>
<add key="Location_Name" value="String I want" />
</appSettings>
</configuration>

代码(从问题中重复)

var value = ConfigurationManager.AppSettings["Location_Name"];

关于c# - 从 app.config 文件中读取字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43395890/

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