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

Script() public static method

public static Script ( this urlHelper, string scriptName ) : string
urlHelper this
scriptName string
return string
        public static string Script(this UrlHelper urlHelper, string scriptName)
        {
            return urlHelper.Content(string.Format("~/Scripts/{0}", scriptName));
        }
UrlConventionExtentions