ArmedCards.Library.Extensions.StringExtension.HTMLDecode C# (CSharp) Метод

HTMLDecode() публичный статический Метод

Decode HTML in a string
public static HTMLDecode ( this str ) : string
str this String to decode
Результат string
        public static string HTMLDecode(this string str)
        {
            return HttpUtility.HtmlDecode(str);
        }