Skip to content

Instantly share code, notes, and snippets.

@danielmackay
Created August 20, 2013 05:47
Show Gist options
  • Save danielmackay/6277513 to your computer and use it in GitHub Desktop.
Save danielmackay/6277513 to your computer and use it in GitHub Desktop.
List helpers. C#.
public static class ListExt
{
public static bool IsNullOrEmpty<T>(this IList<T> list)
{
return (list == null || list.Count == 0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment