private void RecebimentoMensagem02(string cadeia, string ip)
        {
            string[] strings = cadeia.Split(new Char[] { '|' });
            Jogador j = new Jogador();
            j.Codenome = strings[0];
            j.Nome = strings[1];
            j.IP = ip;

            Invoke((MethodInvoker)delegate() { AdicionaJogador(j); });
        }
        void AdicionaJogador(Jogador j)
        {
            if (Jogadores.Contains(j))
            {

            }
            else
            {
                Jogadores.Add(j);
                comboBox1.Items.Add(j.Codenome + " # " + j.Nome);
            }
        }