Which is better to use ?
string myString = "";
String.IsNullOrEmpty(myString);
or
if(myString.Length > 0 || myString != null)
EDIT:
or if (m.Length > 0 | m != null)**
Former is clearer but is there any performance difference in choosing one of above ?
What if, in case a string is never empty, like if taken from a Text Box, which could be empty but not null ?
Thanks