Start() public method

public Start ( ) : void
return void
Esempio n. 1
0
 public static void ServerThreadStart()
 {
     try
     {
         ServerProgram server = new ServerProgram();
         server.d_Exit = exit;
         server.Start();
     }
     catch (Exception e)
     {
         MessageBox.Show(e.ToString());
     }
 }
Esempio n. 2
0
 public static void ServerThreadStart()
 {
     try
     {
         ServerProgram server = new ServerProgram();
         server.d_Exit = exit;
         server.Start();
     }
     catch (Exception e)
     {
         MessageBox.Show(e.ToString());
     }
 }