我正在尝试创建一个程序,用户在其中输入两个 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 语句