怎么可能

时间:2017-10-23 13:33:28

标签: operator-keyword behavior

我问这个是因为程序实际上是在显示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.");
    }
}

1 个答案:

答案 0 :(得分:0)

您应该检查字符串是!= ""还是!= null还是String.equals("")