private void OrdenarJogadores(int idJogador) { while (Jogadores.First().Id != idJogador) { Jogadores.MoveFirstItemToFinal <Jogador>(); } }