bonjour
j'aimerai executer 2 programme en paralléle
voila le point d'entrer de mon programme globale:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 
using System;
using System.Collections.Generic;
using System.Windows.Forms;
 
namespace SELECT
{
    static class Program
    {
 
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
 
           Application.Run(new ROUTER("10.208.32.22", "cs-kpmg-rabat"));
           Application.Run(new ROUTER("10.208.31.129", "cs-kpmg-casa"));
        }
    }
}