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

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

Decode and Remove html
public static HTMLDecodeAndRemove ( this str ) : string
str this String to decode and remove html from
Результат string
        public static string HTMLDecodeAndRemove(this string str)
        {
            return str.HTMLDecode().RemoveHtml();
        }