使用独立的 .NET 配置文件
问题:
如何访问未链接到特定程序集的独立 .NET 配置文件?
解决方案:
ExeConfigurationFileMap
类提供了解决方案。 以下是打开和读取自定义配置文件的方法:
<code class="language-csharp">ExeConfigurationFileMap configMap = new ExeConfigurationFileMap(); configMap.ExeConfigFilename = @"d:\test\justAConfigFile.config.whateverYouLikeExtension"; // Replace with your file path Configuration config = ConfigurationManager.OpenMappedExeConfiguration(configMap, ConfigurationUserLevel.None);</code>
请记住将占位符路径替换为配置文件的正确位置。 扩展名可以是您选择的任何内容。
使用索引器访问设置非常简单:
<code class="language-csharp">string value = config.AppSettings.Settings["test"].Value;</code>
这将检索与配置文件的 AppSettings
部分中的键“test”关联的值。
以上是如何访问自定义 .NET 配置文件?的详细内容。更多信息请关注PHP中文网其他相关文章!