Skip to content

Instantly share code, notes, and snippets.

@azhidkov
Created March 18, 2013 06:11
Show Gist options
  • Save azhidkov/5185352 to your computer and use it in GitHub Desktop.
Save azhidkov/5185352 to your computer and use it in GitHub Desktop.
public static class ListExtenstions
{
public static void AddRange<T>(this IList<T> source, IList<T> second)
{
foreach (var it in second)
{
source.Add(it);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment