Mono.Terminal.MenuItem.MenuItem C# (CSharp) Method

MenuItem() public method

public MenuItem ( string title, string help, System.Action action ) : System
title string
help string
action System.Action
return System
        public MenuItem(string title, string help, Action action)
        {
            Title = title ?? "";
            Help = help ?? "";
            Action = action;
            Width = Title.Length + Help.Length + 1;
        }
MenuItem