Example #1
0
        public static void Main(string[] args)
        {
            var config = QcmdConfig.Create("config.json");
            if (config == null)
                throw new Exception("Config null - create a config.json file");

            var form = new QCmdHostForm(config);
            Application.Run(form);
        }
Example #2
0
        public static void Main(string[] args)
        {
            var config = QcmdConfig.Create("config.json");

            if (config == null)
            {
                throw new Exception("Config null - create a config.json file");
            }

            var form = new QCmdHostForm(config);

            Application.Run(form);
        }