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

___() public static method

@Alias GetRaw and FormatRaw

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

Warning! Neither the html nor the htmlArguments will be encoded whatsoever

public static ___ ( 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 ___(this CultureInfo culture, string html, params object[] htmlArguments)
        {
            var result = new MvcHtmlString(string.Format(I18NComplete.GetText(html, lcid: culture.LCID), htmlArguments));
            return
            #if DEBUG
             I18NComplete.OnGetting___(result, culture, html, htmlArguments) ??
            #endif
             result;
        }

Same methods

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