Skip to content

Instantly share code, notes, and snippets.

@jamesrcounts
Created August 20, 2013 17:15
Show Gist options
  • Save jamesrcounts/6284365 to your computer and use it in GitHub Desktop.
Save jamesrcounts/6284365 to your computer and use it in GitHub Desktop.
Don't get bit by null collections
public static IEnumerable<TMembers> EmptyIfNull<TMembers>(this IEnumerable<TMembers> source)
{
return source ?? Enumerable.Empty<TMembers>();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment