AdvancedLauncher.SDK.Management.Commands.AbstractCommand.AbstractCommand C# (CSharp) 메소드

AbstractCommand() 공개 메소드

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
리턴 System.Collections.Generic
        public AbstractCommand(string commandName, string commandDescription)
        {
            this.commandName = commandName;
            this.commandDescription = commandDescription;
        }