Gets or sets the output
TextWriter used to print usage information if
argument parsing fails or is cancelled.
Namespace:
Ookii.CommandLine
Assembly:
Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.4.0
Syntaxpublic TextWriter? Out { get; set; }
Public Property Out As TextWriter
Get
Set
Dim instance As ParseOptions
Dim value As TextWriter
value = instance.Out
instance.Out = value
public:
property TextWriter^ Out {
TextWriter^ get ();
void set (TextWriter^ value);
}
Property Value
Type:
TextWriter
The
TextWriter used to print usage information, or
to print to a
LineWrappingTextWriter for the standard output stream
(
Out). The default value is
.
Remarks
If argument parsing is successful, nothing will be written.
See Also