我班上有大约10种
方法.在每个
方法中,我使用ConfigurationManager.AppSettings从App.config
文件中
获取值
喜欢
_applicationPort = int.Parse(ConfigurationManager.AppSettings["ApplicationPort"]
我的问题是我想让这个代码从另一个app.config文件中获取AppSettings,如AnotherPoject.exe.config.
您还可以将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