Domanda

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?

È stato utile?

Soluzione

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).

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top