Start() public méthode

public Start ( ) : void
Résultat void
Exemple #1
0
 public static void ServerThreadStart()
 {
     try
     {
         ServerProgram server = new ServerProgram();
         server.d_Exit = exit;
         server.Start();
     }
     catch (Exception e)
     {
         MessageBox.Show(e.ToString());
     }
 }
Exemple #2
0
 public static void ServerThreadStart()
 {
     try
     {
         ServerProgram server = new ServerProgram();
         server.d_Exit = exit;
         server.Start();
     }
     catch (Exception e)
     {
         MessageBox.Show(e.ToString());
     }
 }