SyntaxFix
Write A Post
Hire A Developer
Questions
Agree with some guys above and Lipert's opinion. In my case, it's quite often to do like this:
ICollection<int> A; var B = new List<int> {1,2,3,4,5}; B.ForEach(A.Add);
To have an extension method for such operation a bit redundant in my view.