如何阅读 web.config 中的个人部分?
<MyPersonalSection>
<add name="toto" enable="true" URL="http://localhost:43242" />
<add name="titi" enable="false" URL="http://localhost:98762" />
<MyPersonalSection/>
我想使用名称值获取启用值和/或 URL 值。
我也有这个错误:无法识别的配置部分 MyPersonalSection
我一直在尝试
var config = ConfigurationManager.GetSection("MyPersonalSection");