using System.Collections.Generic; namespace HeuristicLab.CommandLineInterface { /// /// Interface for a command. Every command has to implements this interface. /// public interface ICommand { /// /// This method gets executed after the parsing. The execution order for multiple commands is top-down. /// In other words, left to right from the console view. /// /// /// void Execute(); } }