P_CommandLine_Text_SentenceBuilder_FormatError - adutton/commandline GitHub Wiki
Gets a delegate that handles singular error formatting. The delegates must accept an Error and returns a string.
Namespace: CommandLine.Text
Assembly: CommandLine (in CommandLine.dll) Version: 0.0.0
C#
public abstract Func<Error, string> FormatError { get; }VB
Public MustOverride ReadOnly Property FormatError As Func(Of Error, String)
GetC++
public:
virtual property Func<Error^, String^>^ FormatError {
Func<Error^, String^>^ get () abstract;
}F#
abstract FormatError : Func<Error, string> with get