string.IsNullOrEmpty() vs string.NotNullOrEmpty()

前端 未结 14 916
遇见更好的自我
遇见更好的自我 2021-02-01 02:56

I\'m curious if any developers use string.IsNullOrEmpty() more often with a negative than with a positive

e.g.

if (!string.IsNullOrEmpty())
14条回答
  •  醉梦人生
    2021-02-01 03:34

    Personally I prefer to cater for the non negated scenario first. It just makes sense to me to do the true part first and then the false. Comes down to personal style.

提交回复
热议问题