Skip to content

Instantly share code, notes, and snippets.

@jnericks
Created October 11, 2010 23:22
Show Gist options
  • Save jnericks/621395 to your computer and use it in GitHub Desktop.
Save jnericks/621395 to your computer and use it in GitHub Desktop.
public static IEnumerable<T> ToEnumerable<T>(this IEnumerable<T> list)
{
list = list ?? new List<T>();
foreach (var item in list)
{
yield return item;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment