I have a string that is concatenated inside a loop , I wanted a new line with the concatenated values to be created for each loop .
Here is the code I'm using:
mensagem ="";
for (int i = 0; i < titulosReceber.Rows.Count; i++)
mensagem += "Titulos: " + (titulosReceber[i].TitId).ToString() +
"FormaPagto: " + (titulosReceber[i].NomeMeioPagamento).ToString() +
"Valor: " + (titulosReceber[i].Valor).ToString() + " Dt. Venc: " +
(titulosReceber[i].dVenc)+"\n" ;
SalvarHistorico("Ação Faturar da Saida, gerado(s) o(s)"+ mensagem,
Historico.enumHistoricoTipo.SAI_Faturar, this.Saida[0].Id, IdOperador );
The string is concatenated, but does not break the line.