20
Writing “string.IsNullOrEmpty” using pattern matching and comparing the resulting code
(www.tabsoverspaces.com)
A community about the C# programming language
Getting started
Useful resources
IDEs and code editors
Tools
Rules
Related communities
I've always used the Nullable context so typically I'm just using string.IsNullOrEmpty to determine empty strings, I'm already confident null isn't leaking. But your explanation does make sense.
I'm now wondering why I've never just used
myStr != ""