I have these that check datarows that match the expression:
DataRow[] foundRows = this.callsTable.Select(searchExpression);
How to check if it returns some datarows, so basically, if it returns none, does not do what in the if function?
I tried:
if (foundRows != null) { }
source
share