 | WordCountCreateParser Method |
Creates a CommandLineParserT instance using the specified options.
Namespace: Ookii.Jumbo.Jet.SamplesAssembly: Ookii.Jumbo.Jet.Samples (in Ookii.Jumbo.Jet.Samples.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic static CommandLineParser<WordCount> CreateParser(
ParseOptions? options = null
)
Public Shared Function CreateParser (
Optional options As ParseOptions = Nothing
) As CommandLineParser(Of WordCount)
public:
static CommandLineParser<WordCount^>^ CreateParser(
ParseOptions^ options = nullptr
)
static member CreateParser :
?options : ParseOptions
(* Defaults:
let _options = defaultArg options null
*)
-> CommandLineParser<WordCount>
Parameters
- options ParseOptions (Optional)
-
The options that control parsing behavior, or to use the
default options.
Return Value
CommandLineParserWordCount
An instance of the
CommandLineParserT class for the
WordCount class.
Implements
IParserProviderTSelfCreateParser(ParseOptions)
See Also