Search Results

1
vote
3answers
350 views

Generic method in a non-generic class?

I'm sure I've done this before, but can't find any example of it! Grrr... For example, I want to convert an IList<T> into a BindingList<T>: …
2
votes
1answer
86 views

Implementation options of summing, averaging, concatenating, etc items in an IEnumerable

I'm looking for the shortest code to create methods to perform common operations on items in an IEnumerable. For example: public interface IPupil { string Name { get; se …