AdvancedLauncher.SDK.Management.Commands.AbstractExtendedCommand.GetCommandList C# (CSharp) Method

GetCommandList() protected method

Returns help list of all available subcommands
protected GetCommandList ( ) : List
return List
        protected List<string> GetCommandList()
        {
            List<string> output = new List<string>();
            output.Add("Available commands:");
            int i = 1;
            foreach (string command in SubCommands.Keys) {
                output.Add(string.Format(" {0}. {1}", i++, command));
            }
            return output;
        }