BootstrapMvcHelpers.Bootstrap.MenuItem C# (CSharp) 메소드

MenuItem() 공개 정적인 메소드

The menu item.
public static MenuItem ( this helper, string text, string action, string controller = null ) : MenuItem
helper this The helper.
text string The text.
action string The action.
controller string The controller.
리턴 MenuItem
        public static MenuItem MenuItem(this HtmlHelper helper, string text, string action, string controller=null)
        {
            return new MenuItem(helper, text, action, controller);
        }