Skip to content

Instantly share code, notes, and snippets.

@felipebaltazar
Created November 6, 2020 00:59
Show Gist options
  • Save felipebaltazar/a63897c4b667505e858f2538ca71441e to your computer and use it in GitHub Desktop.
Save felipebaltazar/a63897c4b667505e858f2538ca71441e to your computer and use it in GitHub Desktop.
public static IsNullOrEmpty<T>(this IEnumerable<T> collection)
{
if(collection is null)
return;
return !collection.Any();
}
//usar assim collecao.IsNullOrEmpty()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment