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. Alternatively, a command can implement its own argument parsing by implementing the ICommandWithCustomParsing interface.
Run | Runs the command. |