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 interface, commands that implement the ICommandWithCustomParsing interface are not created with the CommandLineParser class. Instead, they must have a public constructor with no parameters, and must parse the arguments manually by implementing the Parse(ReadOnlyMemoryString, CommandManager) method.