我在我正在工作的項目的App.config中遇到{0}的使用,並且找不到任何關於它的工作方式。它我發現的唯一的另一個問題是this question解釋如何composite formatting的作品,但關於它的使用沒有在config文件{0}在C#配置文件中的鍵值對中找到的含義是什麼?
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="UriUpdateProfile" value="{0}/profiles/{1}" />
...
</appSettings>
</configuration>
請包含從config讀取'UriUpdateProfile'條目的C#代碼。我敢打賭我的錢,你正在'string.Format'上運行它。 – mjwills
我無法找到它,但現在我已經做了更多的研究,我願意下注 – user3220670