我的 IF 语句中有多个条件,但只有第二个条件有效,换句话说,未检测到空值。我知道这些字段是空白或空的,但它没有检测到它。仅当保留第二个条件并删除第一个条件时才会触发电子邮件,但我想在发送电子邮件之前检查这两个条件。谢谢这是我的代码
string k = gr.Cells[9].Text;
DateTime strExpectedSubDate = DateTime.Parse(gr.Cells[3].Text);
DateTime strDate = DateTime.Now.Date;
if (k == null && strExpectedSubDate < strDate)
{
send email();