Skip to content

Instantly share code, notes, and snippets.

@mirmostafa
Created September 16, 2021 09:54
Show Gist options
  • Select an option

  • Save mirmostafa/d5bd96385b5c472d537eb813eb545574 to your computer and use it in GitHub Desktop.

Select an option

Save mirmostafa/d5bd96385b5c472d537eb813eb545574 to your computer and use it in GitHub Desktop.
New string null check
public static bool IsNullOrEmpty([NotNullWhen(false)] this string? str) => str?.Trim() is null or { Length: 0 };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment