C#在运行时在内存中添加app.config设置

时间:2013-04-09 09:41:59

标签: c# .net-3.5 runtime app-config

我们在dll中也有一个自定义函数库(也是c#),需要将以下app.config信息添加到引用它的应用程序中:

<configuration>
  <configSections>
    <sectionGroup name="businessObjects">
      <sectionGroup name="crystalReports">
        <section name="crystalReportViewer" type="System.Configuration.NameValueSectionHandler" />
      </sectionGroup>
    </sectionGroup>
  </configSections>

  <businessObjects>
    <crystalReports>
      <crystalReportViewer>
        <add key="maxNumberListOfValues" value="5000"/>
      </crystalReportViewer>
    </crystalReports>
  </businessObjects>

我们看到了一些编写app.config文件然后加载它的示例...是否可以直接在内存中执行? (不先写任何文件)

还要考虑到大多数应用都没有定义app.config文件......

0 个答案:

没有答案