Skip to content

Instantly share code, notes, and snippets.

@cbilson
Created January 7, 2009 23:31
Show Gist options
  • Save cbilson/44498 to your computer and use it in GitHub Desktop.
Save cbilson/44498 to your computer and use it in GitHub Desktop.
public static IEnumerable<T> As<T>(this IEnumerable genericEnumerable) {
foreach (T item in genericEnumerable)
yield return item;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment