G
Guest
I can use System.Configuration classes:
string dns = ConfigurationSettings["name"];
to access the appSettings configuration
<configuration>
<appSettings>
<add key="name" value="val" />
</appSettings>
</configuration>
Isn't there a Class or Method to write values to the appSettings
or for that matter Custom Configuration settings or
Section Groups?
thanks
string dns = ConfigurationSettings["name"];
to access the appSettings configuration
<configuration>
<appSettings>
<add key="name" value="val" />
</appSettings>
</configuration>
Isn't there a Class or Method to write values to the appSettings
or for that matter Custom Configuration settings or
Section Groups?
thanks