Fix Guard IsWhiteSpace and IsNotWhiteSpace Methods#650
Fix Guard IsWhiteSpace and IsNotWhiteSpace Methods#650GabrieleMessina wants to merge 5 commits intoCommunityToolkit:mainfrom
Conversation
…Space and ThrowArgumentExceptionForIsNotWhiteSpace
|
In my opinion those methods are still confusing with this PR. Why does "white space" include an empty string, but doesn't include null? Neither are white-space characters. Just from the method name I'd assume that an empty string would fail the But I can see how the method name is similar to So, at least I'd suggest to change the documentation of those methods to also mention empty strings. |
|
@cremor I think you have a point. I'll change the code as soon as I can. |
Closes #441
Fixed Guard IsWhiteSpace and IsNotWhiteSpace methods adding a check for null before calling string.IsNullOrWhiteSpace.
Added some tests for both methods.
PR Checklist
Other information
I don't know if this can be considered a breaking change.