System.StringExtension.HtmlDecode C# (CSharp) Method

HtmlDecode() public static method

public static HtmlDecode ( this s ) : string
s this
return string
        public static string HtmlDecode(this string s)
        {
            return System.Web.HttpUtility.HtmlDecode(s);
        }