Start() public method

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