ChiakiYu.Common.Web.WebHelper.HtmlDecode C# (CSharp) Method

HtmlDecode() public static method

html解码
public static HtmlDecode ( string rawContent ) : string
rawContent string 待解码的字符串
return string
        public static string HtmlDecode(string rawContent)
        {
            if (string.IsNullOrEmpty(rawContent))
                return rawContent;

            return HttpUtility.HtmlDecode(rawContent);
        }