show/hide this revision's text 2 formatting

Output types should be as specific as possible, input types should be as loose as possible.

So return T[]T[], but take IEnumerable<T> as input.

You should return what makes sense for the method. If it has to do extra work to convert to another type, think about just dropping that and returning whatever you have internally, as long as you don't return references to internal data structures that shouldn't be modified outside of your own code.

show/hide this revision's text 1

Output types should be as specific as possible, input types should be as loose as possible.

So return T[], but take IEnumerable<T> as input.

You should return what makes sense for the method. If it has to do extra work to convert to another type, think about just dropping that and returning whatever you have internally, as long as you don't return references to internal data structures that shouldn't be modified outside of your own code.