()
| 1786 | |
| 1787 | internal class HelpCommand : Command { |
| 1788 | public HelpCommand() |
| 1789 | : base("help", help: "Show this message and exit") { |
| 1790 | } |
| 1791 | |
| 1792 | public override int Invoke(IEnumerable<string> arguments) { |
| 1793 | var extra = new List<string>(arguments ?? new string[0]); |
nothing calls this directly
no outgoing calls
no test coverage detected