0

ユーザーが 2 つの MD5 ハッシュを入力し、ボタンをクリックして一致するかどうかを確認するプログラムを作成しようとしています。私は次のことを試しましたが、常に返されますelse

    // I skiped the Initialize Component() block for this post.

    private void verifyButton1_Click(object sender, EventArgs e)
    {
        if (textHash1 == textHash2)
        {
            MessageBox.Show("The hashes match");
        }

        else MessageBox.Show("The hashes do not match");
    }

このコードは常にelseステートメントを返します

4

1 に答える 1