You must log in or register to comment.
string.IsNullOrEmpty(myStr)
has always annoyed me, why isn’t it an extension method or a non-static method?myStr.IsNullOrEmpty()
just feels cleaner and more intuitive to me.The usual convention is to have extension methods behave like regular methods, I.E. don’t allow them to accept nulls. When looking at
foo.Bar();
it’s better if I can just intuit thatfoo
can’t benull
because you’re not supposed to be able to invoke the.
operator onnull
.Of course, I’m entirely guilty of breaking this rule myself. cough Shoudly cough FluentAssertions cough