gpt4 book ai didi

c# - 无法从 App.config 引用变量

转载 作者:太空宇宙 更新时间:2023-11-03 21:20:50 25 4
gpt4 key购买 nike

我正在尝试从我的 C# 文件中的 App.config 引用一个变量。这是我的代码示例。

App.config:

<appSettings>
<add key="ErrorEmails" value="fakeCompany@fakeCompany.com"/>
</appSettings>

代码:

SettingsIO setIO = new SettingsIO();
public static string To = setIO.ReadSetting("ErrorEmails");

错误如下:

A field initializer cannot reference the non-static field, method, or preperty 'test.setIO'.

我应该使用 GET 函数吗?我做错了什么?

最佳答案

使用 system.configuration 类。

string str = System.Configuration.ConfigurationManager
.AppSettings["someAppSetting"]
.ToString();

关于c# - 无法从 App.config 引用变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30897135/

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