Currently my app config settings are look like this
<appSettings>
<add key="ConnectionString" value="server=localhost;user=;port=;" />
<add key="MS" value="MSr" />
<add key="MassagesTable" value="Massages" />
</appSettings>
I want to add an inner elements under "MassagesTable"
with names columnOne
and ColumnTwo
. How I can do it , and them to read it from the code .
Currently I do it like ConfigurationManager.AppSettings["ConnectionString"];
Thanks for help.