Dim rowChinaVisa As DataRow
CodeRush is suggesting that I change this line
If rowChinaVisa("sex").ToString = "M" Then
to:
If String.Compare(rowChinaVisa("sex").ToString, "M", False) = 0 Then
I prefer how the orig line reads, but I am wondering if the recommended line is more efficient. Perhaps for LONG strings only?