Skip to content

Instantly share code, notes, and snippets.

@wwahammy
Created September 12, 2011 14:52
Show Gist options
  • Save wwahammy/1211457 to your computer and use it in GitHub Desktop.
Save wwahammy/1211457 to your computer and use it in GitHub Desktop.
Ever wanted to use List.Add with the Aggregate method easily? Here you go.
public static IList<T> LAdd<T>(this IList<T> list, T item)
{
list.Add(item);
return list;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment