如何检查三个不同的文本字段是否有空值?我有以下代码,但它给出了错误。你能在 if 语句中测试三个不同的条件吗?
public bool IsFieldBlank(string fieldValue)
{
if (fieldValue != null)
{
return true;
}
else
{
return false;
}
}
private bool ValidateFields()
{
//attempts to check all three fields but will not compile to do syntex
if(IsFieldBlank(incidentTextBox.Text),IsFieldBlank(returnTextBox.Text),IsFieldBlank(actionTextBox.Text))
{
return true;
}
else
{
return false;
}
}