Exemple #1
0
        static void Main(string[] args)
        {
            App();

            if (mutex != null)
            {
                AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(CurrentDomain_AssemblyResolve);

                Flux flux = new Flux();
                flux.abortExecution += flux_abortExecution;
                flux.Spark();

                while (bRunning == true)
                {
                    System.Threading.Thread.Sleep(3000);
                }
            }
        }