c# – ConfigurationManager.AppSettings使用另一个配置文件

前端之家收集整理的这篇文章主要介绍了c# – ConfigurationManager.AppSettings使用另一个配置文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我班上有大约10种方法.在每个方法中,我使用ConfigurationManager.AppSettings从App.config文件获取

喜欢

_applicationPort = int.Parse(ConfigurationManager.AppSettings["ApplicationPort"]

我的问题是我想让这个代码从另一个app.config文件获取AppSettings,如AnotherPoject.exe.config.

解决方法@H_403_10@
您还可以将app.config设置为读取另一个文件.像这样的东西:
<?xml version="1.0"?>
<configuration>
  <appSettings  file="my\custom\file\path\external.config"/>
</configuration>

而external.config将有appSettings部分:

<appSettings>
    <add key="myKey" value="myValue" />
</appSettings>

有关其他信息,请参阅this msdn.

原文链接:https://www.f2er.com/csharp/97985.html

猜你在找的C#相关文章