G
Guest
In normal application the set and get of appSettings are simply as following
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="Log" value="1" />
</appSettings>
</configuration>
string log = System.Configuration.ConfigurationSettings.AppSettings["Log"];
However, the same setting in my C#'s COM object doesn't work at all and keeps on returning "null" value.
Any comment ? Please help
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="Log" value="1" />
</appSettings>
</configuration>
string log = System.Configuration.ConfigurationSettings.AppSettings["Log"];
However, the same setting in my C#'s COM object doesn't work at all and keeps on returning "null" value.
Any comment ? Please help