app.config ファイルを使用して新しいアプリケーションをプログラミングしています。
ここに私のapp.configがあります:
<configuration>
<configSections>
<sectionGroup name="FTPServers">
<section name="section1" type="System.Configuration.SingleTagSectionHandler" />
<section name="section2" type="System.Configuration.SingleTagSectionHandler" />
</sectionGroup>
<sectionGroup name="Application">
<section name="Section3" type="System.Configuration.SingleTagSectionHandler" />
<section name="Section4" type="System.Configuration.SingleTagSectionHandler" />
<section name="Section5" type="System.Configuration.DictionarySectionHandler" />
</sectionGroup>
</configSections>
必要に応じてコードでセクション グループにセクションを追加することはできますか?
プログラムでフォームを作成してこの構成を変更したいのですが、セクション グループを作成し、構成セクションを作成すると便利です ...
ありがとう