R
Rich
Hello,
Just checking which is more efficient/better/or correct
Do While something
str1 = dr(i).ToString
If Not str1.Equals("xyz") Then
....
or
If str1 <> "xyz" Then
....
or does it make any difference? or any other syntax?
TIA,
Rich
Just checking which is more efficient/better/or correct
Do While something
str1 = dr(i).ToString
If Not str1.Equals("xyz") Then
....
or
If str1 <> "xyz" Then
....
or does it make any difference? or any other syntax?
TIA,
Rich