//**********************************************************************

        public void executeGo5(CmdLineCmd aCmd)
        {
            aCmd.setArgDefault(1, 101);
            int tX = aCmd.argInt(1);

            Console.WriteLine("X       {0}", tX);
            Console.WriteLine("Comment {0} {1}", aCmd.hasComment(), aCmd.comment());
        }
        //**********************************************************************

        public void executeCommand1(CmdLineCmd aCmd)
        {
            Console.WriteLine("Command1 HasComment {0} {1}", aCmd.hasComment(), aCmd.comment());
        }