1

2 つの値を比較するときに、新しい streamwrite 出力ファイルを書き込むことができるかどうか疑問に思っていました。私の値の 1 つは にあり、もう 1 つは にありLabelBoxListBox入力ファイルによって取り込まれます。その目的は、LabelBox の値が Listbox の値よりも大きい場合にのみ、この新しい値を変更することです。次のコードを参照してください。

if (MaxRolls == 0)
{
    Random getMax = new Random();
    totalmoneyLabel.Text = "";
}
else if (RollCount >= MaxRolls)
{
    //
    if (runningTotal >= highscore)
    {
        StreamWriter outputFile;
        outputFile = File.CreateText("HighScore.txt");
        outputFile.WriteLine("New Highscore!!");
        outputFile.WriteLine(totalmoneyLabel.Text);
        outputFile.Close();
    }
    //

    MaxRolls = 25;
    RollCount = 0; 
    runningTotal = 0;
    totalmoneyLabel.Text = "$0.00";
    Show();
    MessageBox.Show("You lost!");

    return;
}
4

0 に答える 0