3

这个问题的灵感来自此处找到的问题并作为其扩展:sub appsettings in the appsetting node c#

我的问题是,是否可以在 WPF 的 App.config 中的 appSettings 节点中嵌套更多节点,然后相应地访问它们?

就像是:

<configuration>
    <appSettings>
        <UISettings>
            <add key="SomeUIKey" value="SomeUIValue" />
        </UISettings>
        <ProgramSettings>
            <add key="SomeProgramKey" value="SomeProgramValue" />
        </ProgramSettings>
    </appSettings>
</configuration>

在 Meta Stackoverflow 的要求下,我想澄清一下,在我看来,对原始问题的公认答案并不令人满意,因为它提供了一种解决方法,而不是对该问题的可靠答案。我要做的不是指定进一步的 configSection,而是以类似于自定义 sectionGroup 的方式使用 appSettings。这甚至可能吗?

4

0 回答 0