3 つの異なるテキスト フィールドで null を確認するにはどうすればよいですか? 次のコードがありますが、エラーが発生しています。if ステートメントで 3 つの異なる条件をテストできますか?
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;
        }
    }