You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (valueTable==null || valueTable.Rows==null) { // }
and if (valueTable?.Rows==null) { // }
should have same complexity value, because they are logically identical and they both have 2 decision points.
But currently if (valueTable?.Rows==null) is counted as 1 decision point.
The text was updated successfully, but these errors were encountered:
if (valueTable==null || valueTable.Rows==null) { // }
and
if (valueTable?.Rows==null) { // }
should have same complexity value, because they are logically identical and they both have 2 decision points.
But currently if (valueTable?.Rows==null) is counted as 1 decision point.
The text was updated successfully, but these errors were encountered: