Instead of displaying text line by line show the whole text. Visual Studio Community 2017.
Stream entrada = File.Open(varexe + "\Score.txt", FileMode.Open);
StreamReader leitor = new StreamReader(entrada);
string linha = leitor.ReadLine();
while (linha != null)
{
MessageBox.Show(linha);
linha = leitor.ReadLine();
}
leitor.Close();
entrada.Close();