Heyes.GetOpt
1.0.2
See the version list below for details.
Install-Package Heyes.GetOpt -Version 1.0.2
dotnet add package Heyes.GetOpt --version 1.0.2
<PackageReference Include="Heyes.GetOpt" Version="1.0.2" />
paket add Heyes.GetOpt --version 1.0.2
#r "nuget: Heyes.GetOpt, 1.0.2"
// Install Heyes.GetOpt as a Cake Addin
#addin nuget:?package=Heyes.GetOpt&version=1.0.2
// Install Heyes.GetOpt as a Cake Tool
#tool nuget:?package=Heyes.GetOpt&version=1.0.2
Purpose
The GetOpt class allows you to easily define and handle command line options and arguments. Various styles of options are catered for each optionally having its own argument. For example: long options: (--foo), long options with arguments (--foo=bar), short options (-f, /f), short options with arguments (-f bar, -fbar) and consolidated short options (-fb).
Example
This example defines 4 options (a, b, foo and bar). "foo" is required to be given with an argument (eg. --foo=xyz) and bar can be supplied with or without an argument.
try {
GetOpt foo = new GetOpt(args);
GetOpt.SetOpts(new string[] {"a", "b", "foo=", "bar=?"})
GetOpt.Parse();
} catch (ArgumentException e) {
myProgram.PrintUsage();
}
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
-
net5.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.