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

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

Remove HTML from the string
public static RemoveHtml ( this str ) : string
str this The string in which to remove the HTML
Результат string
        public static string RemoveHtml(this string str)
        {
            return _htmlRegex.Replace(str, string.Empty);
        }