System.Web.Mvc.UrlConventionExtentions.Css C# (CSharp) Method

Css() public static method

public static Css ( this urlHelper, string styleSheet ) : string
urlHelper this
styleSheet string
return string
        public static string Css(this UrlHelper urlHelper, string styleSheet)
        {
            return urlHelper.Content(string.Format("~/CSS/{0}", styleSheet));
        }
UrlConventionExtentions