When I\'m writing my DAL or other code that returns a set of items, should I always make my return statement:
public IEnumerable GetRecentItems
List) for the return
values and the most generic type for input parameters even in case of collections.IReadOnlyList or IReadOnlyCollection as the return value type.More