Invisionsoft
Well-known member
Which do you think is more efficient or better practice for seeing if a string is empty? I wonder about this for all languages. Turns out the 2nd one is the case for PHP.
OR
- James
VB.NET:
if (x.length = 0) Then
OR
VB.NET:
if (x = "") Then
- James