AdvancedLauncher.SDK.Management.Commands.AbstractCommand.AbstractCommand C# (CSharp) Method

AbstractCommand() public method

Main constructor
public AbstractCommand ( string commandName, string commandDescription ) : System.Collections.Generic
commandName string Command name to execute. See
commandDescription string Command description for help. See
return System.Collections.Generic
        public AbstractCommand(string commandName, string commandDescription)
        {
            this.commandName = commandName;
            this.commandDescription = commandDescription;
        }