App.Config にいくつかのカスタム構成セクションを設定したので、次のような configSection が作成されました。
<configSections>
<section name="Section1" type="ConfigSections.MySection, MyNamespace"/>
<section name="Section2" type="ConfigSections.MySection, MyNamespace"/>
<section name="Section3" type="ConfigSections.MySection, MyNamespace"/>
</configSections>
私がやりたいことは、コードでこのセクションを読んで、実行時にどのセクションがあるかを調べることです。私が試してみました:
var mySections = ConfigurationManager.GetSection("configSections");
しかし、これは null を返します。簡単なものが欠けていると確信していますが、これを行う方法については何も見つかりません。
ありがとう