ConfigurationManager.AppSettings - Returns Null

≡放荡痞女 提交于 2019-12-23 08:07:12

问题


Im trying to read settings from my app.config and im sure it was working before but now it returns a nullReferenceException.

My code getting the settings is as follows:

codeValueUtilRx = ConfigurationManager.AppSettings["CODEVALUE_UTIL_RX"].Split(';').ToList();

My app-congfig is as follows:

<appSettings>
    <add key ="LOGFILELOCATION" value ="C:\\RuleEditor\\"/>
    <add key ="CODEVALUE_UTIL_RX"  value="GCN;GRP;NDC;SPEC;TCC"/>
</appSettings>

I have a feeling its something seemingly obvious, I just cant figure it out. Ive tried moving the app-config to different projects in the solution and ive recreated the file, but with no luck. Any ideas?


回答1:


Ive tried moving the app-config to different projects in the solution and ive recreated the file, but with no luck

your code is correct (i have tested), you need to make sure that your app.config file is in your main project (exe).



来源:https://stackoverflow.com/questions/18470541/configurationmanager-appsettings-returns-null

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!