AdvancedLauncher.Management.Commands.EchoCommand.DoCommand C# (CSharp) Method

DoCommand() public method

public DoCommand ( string args ) : bool
args string
return bool
        public override bool DoCommand(string[] args)
        {
            StringBuilder builder = new StringBuilder();
            bool skipEcho = false;
            foreach (String arg in args) {
                if (!skipEcho) {
                    skipEcho = true;
                    continue;
                }
                builder.Append(String.Format("{0} ", arg));
            }
            LOGGER.Info(builder);
            return true;
        }