P_CommandLine_Text_SentenceBuilder_HelpCommandText - adutton/commandline GitHub Wiki
Get a delegate that returns the help text of help command. The delegates must accept a boolean that is equal
Type: Func(Boolean, String)
true for options; otherwise
Type: Func(Boolean, String)
false for verbs.
Namespace: CommandLine.Text
Assembly: CommandLine (in CommandLine.dll) Version: 0.0.0
C#
public abstract Func<bool, string> HelpCommandText { get; }VB
Public MustOverride ReadOnly Property HelpCommandText As Func(Of Boolean, String)
GetC++
public:
virtual property Func<bool, String^>^ HelpCommandText {
Func<bool, String^>^ get () abstract;
}F#
abstract HelpCommandText : Func<bool, string> with get