我需要在C#console应用程序的app.config
文件中
添加html
标签.我试过了
<p>
但它对我有用.有任何想法吗?
首先,将System.Web的引用
添加到项目中.然后,您可以在
HTML encoding之前存储HTML.只需在存储在
配置文件中的值上
调用HttpUtility.UrlDecode()即可.
你的配置文件:
<appSettings>
<add key="HTML" value="<p>My paragraph</p>"/>
</appSettings>
你的代码:
string html = HttpUtility.UrlDecode(ConfigurationManager.AppSettings["HTML"]);
原文链接:https://www.f2er.com/csharp/243359.html