我一直在使用StreamReader inputFile
来自 a 的代码ListBox
并且效果很好,但是,我想将.txt
文件中的数据输入到一个Label
框中,这可能吗?这是我尝试过的代码,它给了我一个错误描述说明
Use of unassigned local variable 'total'
private void Form1_Load(object sender, EventArgs e)
{
try
{
int total = 0;
int highScore;
StreamReader inputFile;
inputFile = File.OpenText("HighScore.txt");
while (!inputFile.EndOfStream)
{
highScore = int.Parse(inputFile.ReadLine());
total += highScore;
}
inputFile.Close();
highscoreLabel.Text = total.ToString("c");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}