本文介绍了什么是configurationmanager.appsettin ...的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
什么是
ConfigurationManager.AppSettings["SMSUserId"] != null ? Convert.ToString(ConfigurationManager.AppSettings["SMSUserId"]) : "2000055403";
我尝试了什么:
什么是
What I have tried:
what is
ConfigurationManager.AppSettings["SMSUserId"] != null ? Convert.ToString(ConfigurationManager.AppSettings["SMSUserId"]) : "2000055403";
推荐答案
if (a)
{
x = b;
}
else
{
x = c;
}
浓缩为:
Is condensed to:
x = a ? b : c;
在这种情况下,如果设置存在(即它不为空),则将设置作为字符串返回。如果它不存在,则返回默认值2000055403。
In this case, if the setting exists (i.e. it's not null) it returns the setting as a string. If it doesn;t exist, it returns a default value "2000055403" instead.
这篇关于什么是configurationmanager.appsettin ...的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!