Exemplo n.º 1
0
        static void Main()
        {
            TspDisplay gd;

            gd           = new TspDisplay();
            gd.Width     = 690;
            gd.Height    = 500;
            gd.converged = false;
            Thread netThread = new Thread(new ThreadStart(gd.runNetwork));

            netThread.Start();
            Application.Run(gd);
        }
Exemplo n.º 2
0
 static void Main()
 {
     TspDisplay gd;
     gd = new TspDisplay();
     gd.Width=690;
     gd.Height=500;
     gd.converged=false;
     Thread netThread = new Thread(new ThreadStart(gd.runNetwork));
     netThread.Start();
     Application.Run(gd);
 }