Hardly.StringHelpers.ToHtmlSafeTagText C# (CSharp) Метод

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

public static ToHtmlSafeTagText ( this value ) : string
value this
Результат string
        public static string ToHtmlSafeTagText(this string value)
        {
            // TODO extend to cover all special chars
            return value?.Replace("\"", "'");
        }