Skip to content

Instantly share code, notes, and snippets.

@ledsun
Created April 20, 2012 06:46
Show Gist options
  • Save ledsun/2426644 to your computer and use it in GitHub Desktop.
Save ledsun/2426644 to your computer and use it in GitHub Desktop.
ICollectionに破壊的にConcatする拡張メソッド
public static class CollectionExtensions
{
public static void Concat<T>(this ICollection<T> collection, IEnumerable<T> values)
{
foreach (var v in values)
{
collection.Add(v);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment