public interface ICommandWithCustomParsing : ICommandPublic Interface ICommandWithCustomParsing
Inherits ICommand
Dim instance As ICommandWithCustomParsingpublic interface class ICommandWithCustomParsing : ICommandUnlike 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.