在我的web.config
文件中,我有
<appSettings>
<add key="Service1URL1" value="http://managementService.svc/"/>
<add key="Service1URL2" value="http://ManagementsettingsService.svc/HostInstances"/>
....lots of keys like above
</appSettings>
我想获取以开头的键Service1URL
的值并将该值传递给string[] repositoryUrls = { ... }
我的 C# 类。我怎样才能做到这一点?
我尝试了这样的事情,但无法获取值:
foreach (string key in ConfigurationManager.AppSettings)
{
if (key.StartsWith("Service1URL"))
{
string value = ConfigurationManager.AppSettings[key];
}
string[] repositoryUrls = { value };
}
要么我做错了,要么在这里遗漏了一些东西。任何帮助将不胜感激。