我问这个是因为程序实际上是在显示MessageBox。 要显示MessageBox,代码必须首先传递!=(不等于)string.Empty条件。然后在下一行中它必须传递==(等于)string.Empty标准。 a变量如何同时等于和不等于string.Empty?
if (StatInfo.PosLab.DateSentToTM != string.Empty);
{
if (StatInfo.PosLab.DateSentToTM == string.Empty)
{
MessageBox.Show("How is it even possible to reach this code.");
}
}
答案 0 :(得分:0)
您应该检查字符串是!= ""
还是!= null
还是String.equals("")