更新自定义配置部分

时间:2010-12-30 20:26:45

标签: .net app-config

我的app.config中有一个看起来像这样的配置部分

<configSections>
    <section name="importSettingsSection" type="MyApp.Console.Config.ImportSettingsSection, MyApp.Console"/>
</configSections>
<importSettingsSection>
    <serviceSettings pollInterval="50" runAt="1400" />
    <systems>
        <add name="System1" lastRunDate="12/01/2010" />
        <add name="System2" lastRunDate="12/01/2010" />
    </systems>
</importSettingsSection>

我想知道是否有人可以帮我弄清楚如何在运行时修改系统节点下的lastRunDate。

由于

1 个答案:

答案 0 :(得分:2)

您不能,您将无权使用此文件。 app.config文件不是数据库,在其他地方写入。文件,数据库,无论你喜欢什么。