Check out example codes for "c# diferença em stringbuilder e contatenação". It will help you in understanding the concepts better.
Code Example 1
var nomesDosAlunos = new StringBuilder();
foreach(var aluno in salaDeAula.Alunos)
nomesDosAlunos.Append(aluno.Nome).Append(',');
Learn ReactJs, React Native from akashmittal.com