What are the benefits or detriments of either?
|
My guidelines has always been most specific out, and most general in. The more general your data type is, the less the code that uses it knows about the data type. For instance, if a method returns a collection, I would return the newly created collection that the method produced. If it returns an internal data structure, I would bump it up to However, if it returns an array, or a The other end of the spectrum, to return the most general (within limits) data type would mean that you always return This means more, and in most cases, unnecessary work. As for input, I go for the most general type I can use, so for collections, unless I specifically need an array or a list or similar, I will accept The important part is to reach a balance. Don't be too general or too specific, all the time, every time. Figure out the right type that makes sense and consider what the calling code has to do in order to pass data in or accept outgoing data from your code. The less work, the better. |
||||
|
|
|
In general I would go for the more general type. That way I won't break any client that may use the information about the return type. If I return a more general type, in the implementation of the action method I can always change the type to something different. Consider the following scenario: You return a custom action result that derives from BTW: I do the same - returning the most appropriate general type - for all methods not only for action methods. Edit: Please note that this doesn't mean that I'd return |
||||