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