项目配置文件中有部分是这样的
<appSettings>
    <add key="URLCount" value="1"/>
    <add key="URL0" value="http://abc/index.php?a=b&c=k"/>    
    <add key="ProcessStartTime" value="2013-01-01"/>VS总是报错说
Error 3 Application Configuration file "app.config" is invalid. An error occurred while parsing EntityName. Line 18, position 86.
Error 1 Entity 'c' not defined.
Error 2 Expecting ';'.错误显示是在网址的 & 和它之后的字符上,我试着加上转义字符\也没用,不知道配置文件value中的 & 符号应该如何处理?