public static MvcHtmlString ListBox(this HtmlHelper htmlHelper, string name, IEnumerable <SelectListItem> selectList = null, string cssClass = null, string dir = null, bool disabled = false, string id = null, string lang = null, int?size = null, string style = null, int?tabIndex = null, string title = null) { return(SelectExtensions.ListBox( htmlHelper, name, selectList, SelectAttributes(cssClass, dir, disabled, id, lang, size, style, tabIndex, title) )); }