System.Globalization.I18N.FormatRaw C# (CSharp) Method

FormatRaw() public static method

@Alias ___ (3 underscores) and GetRaw

Translates the given html applying string.Format(html, htmlArguments) to the current culture language.

For each argument the escape func will be called before applying the format

public static FormatRaw ( this culture, string html ) : System.Web.Mvc.MvcHtmlString
culture this The culture being extended
html string The html to be translated
return System.Web.Mvc.MvcHtmlString
        public static MvcHtmlString FormatRaw(this CultureInfo culture, string html, params object[] htmlArguments)
        {
            return ___(culture, html, htmlArguments);
        }

Same methods

I18N::FormatRaw ( this culture, string html, object>.Func escapeArgumentFunc ) : System.Web.Mvc.MvcHtmlString