Skip to content

Instantly share code, notes, and snippets.

@wsrzx
Last active August 29, 2015 14:26
Show Gist options
  • Save wsrzx/aae8d4604a80fcc26b3d to your computer and use it in GitHub Desktop.
Save wsrzx/aae8d4604a80fcc26b3d to your computer and use it in GitHub Desktop.
A fast ToList().ForEach extensions to PCL
public static class EnumerableExtensions
{
public static void ForEach<T>(this IEnumerable<T> @this, Action<T> action)
{
foreach (T item in @this)
{
action(item);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment