Are there any best practices on returning different return types on overloaded methods? For instance if I have a Load method in my DAL, I either want to load a single item or a bunch of items. I know that I could use a number of approaches:
Load one object
MyBusinessObject LoadOne(int id)
{
}
Load multiple objects
MyBusinessObject[] LoadMany(params int[] ids)
{
}
Now something I know I can do is to overload one method and have different return types. Like so:
MyBusinessObject Load(int id)
{
}
And
MyBusinessObject[] Load(params int[] ids)
{
}
While it seems there's nothing to stop me doing this, and it keeps things tidy from an API perspective, does this seem like a good idea? I came across it last night and part of me thinks I shouldn't be doing this for the reason of wanting matching return types for overloaded method.
I could also have the Load(int id) method return a collection that only holds one item. It seems to me that this violates the principle of least surprise though in that if you're expecting one item returned, you should return that item, you shouldn't return a list containing a single item.
So here are my conflicting thoughts surrounding these ideas:
- Overloaded methods should all return the same type.
- If methods do the same thing, don't give them a bunch of different names, overload the same method name. It makes things simpler from an API user's perspective, they don't have to trawl through a bunch of different methods that all essentially do the same thing but with different parameters.
- Return the most obvious type for the method, i.e. if the user is likely to be expecting a collection of items, return a collection of items, if they are likely to be expecting a single item, return a single item.
So the latter two thoughts kind of outweigh the first, but at the same time, the first thought seems like a programmatic best practice of sorts.
Are there any best practices surrounding this practice? I'd be interested to hear others' thoughts on the subject.

IEnumerable<MyBusinessObject>instead of an array. Eric Lippert has a great blog post about this. – Brian Rasmussen Oct 11 at 19:18