Skip to content

Instantly share code, notes, and snippets.

@bsimser
Created October 1, 2024 17:08
Show Gist options
  • Save bsimser/51561c04416b47937fc1cec42a1c292e to your computer and use it in GitHub Desktop.
Save bsimser/51561c04416b47937fc1cec42a1c292e to your computer and use it in GitHub Desktop.
Improved readability to string.IsNullOrEmpty
public static class StringExtensions
{
public static bool HasValue(this string value)
{
return !string.IsNullOrEmpty(value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment