Interface IArgumentsParser
An argument parser for commands.
Namespace: TehGM.Wolfringo.Commands.Parsing
Assembly: Wolfringo.Commands.dll
Syntax
public interface IArgumentsParser
Methods
| Improve this Doc View SourceParseArguments(String, Int32)
Parses commands from input.
Declaration
IEnumerable<string> ParseArguments(string input, int startIndex)
Parameters
Type | Name | Description |
---|---|---|
String | input | Command input. |
Int32 | startIndex | Index at which to start parsing. |
Returns
Type | Description |
---|---|
IEnumerable<String> | Enumerable of found arguments. |