public void Start()
        {
            if (client != null)
            {
                return;
            }

            client = new CommUtil.Tcp.TcpClient(serverAddress, serverPort);
            client.Start();

            RaiseEnabledPropertiesChanged();
        }
    public void Start()
    {
      if(client != null) return;
      
      client = new CommUtil.Tcp.TcpClient(serverAddress, serverPort);
      client.Start();

      RaiseEnabledPropertiesChanged();
    }