Ejemplo n.º 1
0
 void SendCommand(string command, params string[] parameters)
 {
     try
     {
         if (con != null)
         {
             con.SendCommand(command, parameters);
         }
     }
     catch
     {
         // sending data to closed connection likely
     }
 }