public interface ICommandWithCustomParsing : ICommand
Public Interface ICommandWithCustomParsing
Inherits ICommand
Dim instance As ICommandWithCustomParsing
public interface class ICommandWithCustomParsing : ICommand
Unlike commands that only implement the ICommand interfaces, commands that implement the ICommandWithCustomParsing interface are not created with the CommandLineParser. Instead, they must have a public constructor with no parameters, and must parse the arguments manually by implementing the Parse(String, Int32, CommandOptions) method.