public interface ICommand
Public Interface ICommand
Dim instance As ICommand
public interface class ICommand
To create a subcommand for your application, create a class that implements this interface, then apply the CommandAttribute attribute to it.
The class will be used as an arguments type with the CommandLineParser, so it can define command line arguments using its properties and constructor parameters.
Alternatively, a command can implement its own argument parsing by implementing the ICommandWithCustomParsing interface.
Run | Runs the command. |