这个问题已经在这里有了答案:
9年前关闭。
在app.config中,如何知道它是否包含特定 key ?
最佳答案
var specificValue = ConfigurationManager.AppSettings["specificKey"];
if (!string.IsNullOrEmpty(specificValue))
{
// Use the value
}
但是,如果您只想检查状态,则还可以:
if (ConfigurationManager.AppSettings.AllKeys.Contains("specificKey"))
{
// the config file contains the specific key
}
关于c# - 如何确定appconfig包含特定 key ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4517786/