I have run into the use of {0} in the App.config of a project I'm working on and I can't find anything on how it works. The only other question on it I found is the this question which explains how composite formatting works but nothing about its use in the .config file
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="UriUpdateProfile" value="{0}/profiles/{1}" />
...
</appSettings>
</configuration>