Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Resharper suggests parameter can be of type 'BaseType'

Tags:

what are the benefits of using base types in method parameters?

Here's one sample:

 private void Foo(List<int> numbers) //R# laments: parameter can be IEnumerable.  {     foreach (var i in numbers) {         Console.WriteLine(i);     } } 



And here's another one

 public class Foo : ICloneable {     public object Clone()     {         return MemberwiseClone();     }      public Foo CopyMe(Foo other) //R# laments: parameter can be ICloneable     {          return (Foo)other.Clone();     } } 

...where we can change the type and anything but Foo will fail at runtime.



So the question: what should I do when R# suggests parameter can be of type 'X'?




PS. Just another explanation for Whysharper - a plugin that dovetails Resharper and StackOverflow. People say it's nice but lacks good explanations - hopefully together we can make it better ;).

like image 878
andreister Avatar asked Aug 31 '09 14:08

andreister


2 Answers

Using base types for parameters has the following benefits:

  • Reduces unnecessary coupling in your code
  • Makes your code more flexible by allowing a broader range of valid inputs
  • Makes your code safer by limiting the types of operations that can be performed on the input
  • Improves performance of your code by reducing the need to perform conversions between types

However, you shouldn't always us a base type in a method call just because a tool like ReSharper says it is possible. You should make sure that the usage and semantics of the methods are clear - and that future changes are not likely to require moving down the inheritance hierarchy - potentially breaking existing code.

In your examples above, using IEnumerable instead of List makes it possible for callers of your code to pass in not just List objects but also arrays, Stacks, Queues, and even results from LINQ calls (which primarily return IEnumerable). Since your code only iterates over the collection, it doesn't need to know about List. It also means that consumers of your code won't have to convert their collections into copies of type List just to pass them to your method.

like image 161
LBushkin Avatar answered Oct 08 '22 20:10

LBushkin


It's the Liskov Substitution principle

like image 38
Frederik Gheysels Avatar answered Oct 08 '22 20:10

Frederik Gheysels