  | GenSortParse(String, ParseOptions) Method | 
            Parses the specified command line arguments, handling errors and showing usage help as required.
            
Namespace: Ookii.Jumbo.Jet.SamplesAssembly: Ookii.Jumbo.Jet.Samples (in Ookii.Jumbo.Jet.Samples.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic static GenSort? Parse(
	string[] args,
	ParseOptions? options = null
)
Public Shared Function Parse ( 
	args As String(),
	Optional options As ParseOptions = Nothing
) As GenSort
public:
static GenSort^ Parse(
	array<String^>^ args, 
	ParseOptions^ options = nullptr
)
static member Parse : 
        args : string[] * 
        ?options : ParseOptions 
(* Defaults:
        let _options = defaultArg options null
*)
-> GenSort Parameters
- args  String
 - The command line arguments.
 - options  ParseOptions  (Optional)
 - 
              The options that control parsing behavior and usage help formatting. If
              , the default options are used.
            
 
Return Value
GenSort
              An instance of the 
GenSort class, or 
 if an
              error occurred or argument parsing was canceled.
            
Implements
IParserTSelfParse(String, ParseOptions)
See Also