解説 この要素が構成ファイル内にある場合は、<configuration> 要素の最初の子要素である必要があります。 例 次の例は、構成セクションを定義し、そのセクションの設定を定義する方法を示しています。 <configuration> <configSections> <section name="sampleSection" type="System.Configuration.SingleTagSectionHandler" /> </configSections> <sampleSection setting1="Value1" setting2="value two" setting3="third value" /> </configuration> 構成ファイル この要素は、アプリケーション構成ファイル、マシン構成ファイル (Machine.config)、およびアプリケー
