I\'m curious if any developers use string.IsNullOrEmpty() more often with a negative than with a positive
e.g.
if (!string.IsNullOrEmpty())
Double negatives are usually discouraged in naming stuff. !string.NotNullOrEmpty(...) would make one.
!string.NotNullOrEmpty(...)