Menu

/U

/u/Alert-Neck7679

Author Profile

Claim This Author Profile

Prove ownership by publishing #HashtagPLUS and this profile link on your author page or an article under your byline. A moderator or admin will review the request before it merges into your real HashtagPLUS username.

Sign In To Claim
0 karma0 postsjoined 3 days ago

🌐 reddit.comSource

I just realized that you can do: public static class Extensions { public static bool IsNullOrWhiteSpace(this string? str) => string.IsNullOrWhiteSpace(str); } And then you can just do: if (name.IsNullOrWhiteSpace()) ... Instad of: if (string.IsNullOrWhiteSpace(name)) ...

3 days ago