StreamReader inputFile
からのコードを使用しており、うまく機能しますが、代わりにファイル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);
}
}