Should parameters/returns of collections be IEnumerable<T> or T[]? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T18:03:28Zhttp://stackoverflow.com/feeds/question/396513http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/396513/should-parameters-returns-of-collections-be-ienumerablet-or-t7Should parameters/returns of collections be IEnumerable<T> or T[]?George Mauer2008-12-28T18:49:48Z2009-03-09T14:27:10Z
<p>As I've been incorporating the Linq mindset, I have been more and more inclined to pass around collections via the <code>IEnumerable<T></code> generic type which seems to form the basis of most Linq operations.</p>
<p>However I wonder, with the late evaluation of the <code>IEnumerable<T></code> generic type if that is a good idea. Does it make more sense to use the <code>T[]</code> generic type? <code>IList<T></code>? Or something else?</p>
<p><strong>Edit:</strong> The comments below are quite interesting. One thing that has not gotten addressed though seems to be the issue of thread safety. If, for example, you take an <code>IEnumerable<T></code> argument to a method and it gets enumerated in a different thread, then when that thread attempts to access it the results might be different than those that were meant to be passed in. Worse still, attempting to enumerate an <code>IEnumerable<T></code> twice - I believe throws an exception. Shouldn't we be striving to make our methods thread safe?</p>
http://stackoverflow.com/questions/396513/should-parameters-returns-of-collections-be-ienumerablet-or-t/396541#3965411Answer by Lasse V. Karlsen for Should parameters/returns of collections be IEnumerable<T> or T[]?Lasse V. Karlsen2008-12-28T19:13:03Z2008-12-28T19:15:02Z<p>Output types should be as specific as possible, input types should be as loose as possible.</p>
<p>So return <code>T[]</code>, but take <code>IEnumerable<T></code> as input.</p>
<p>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.</p>
http://stackoverflow.com/questions/396513/should-parameters-returns-of-collections-be-ienumerablet-or-t/396544#3965449Answer by Jay Bazuzi for Should parameters/returns of collections be IEnumerable<T> or T[]?Jay Bazuzi2008-12-28T19:14:49Z2008-12-28T19:14:49Z<p>For the most part, you shouldn't be passing arrays (<code>T[]</code>) on <code>public</code> interfaces. See Eric Lippert's blog post "<a href="http://blogs.msdn.com/ericlippert/archive/2008/09/22/arrays-considered-somewhat-harmful.aspx" rel="nofollow">Arrays considered somewhat harmful</a>" for details.</p>
<p>The exception is methods that take a <code>params</code> array, as it has to be an array. (Hopefully a future version will allow "<code>params IList<s> foo</code>" in method signatures.)</p>
<p>For <code>internal</code> members, do whatever you like; you have control over both sides of the interface.</p>
http://stackoverflow.com/questions/396513/should-parameters-returns-of-collections-be-ienumerablet-or-t/396601#3966011Answer by bh213 for Should parameters/returns of collections be IEnumerable<T> or T[]?bh2132008-12-28T19:56:40Z2008-12-28T19:56:40Z<p>I would choose between IList and IEnumerable and wouldn't consider array at all. </p>
<p>Note that IEnumerable does not have Count or Length property except as an extension method, while array and IList do. So, I would base my decision on that: </p>
<p>If return value has known number of elements -> IList or array (if you must)
otherwise IEnumberable</p>
http://stackoverflow.com/questions/396513/should-parameters-returns-of-collections-be-ienumerablet-or-t/396672#3966723Answer by Jay Bazuzi for Should parameters/returns of collections be IEnumerable<T> or T[]?Jay Bazuzi2008-12-28T20:56:16Z2008-12-28T20:56:16Z<p>"Shouldn't we be striving to make our methods thread safe?"</p>
<p>We should <strong>be deliberate</strong> about the <a href="http://blogs.msdn.com/larryosterman/archive/2006/09/29/777022.aspx" rel="nofollow">abilities</a> of our code. </p>
<p>Just because a method isn't threadsafe doesn't mean it's a failure, just that you need to know that fact before you try to use it in a multi-threaded program. Do you strive to make <code>Main()</code> threadsafe? Does thread safety matter in a single-threaded program?</p>
<p>Anyway, I don't think it really makes sense to say "Foo is threadsafe", only that "Foo has the following characteristics that are important in a multi-threaded context."</p>
<p>"attempting to enumerate an IEnumerable twice - I believe throws an exception."</p>
<p>That'd be bad. Luckily you can test it, instead of expanding FUD. </p>
<p>I think what you're asking is "shouldn't I return a copy of my collection, instead of a reference to an internal member collection, so that callers won't modify my data"? And the answer is an unqualified "<strong>maybe</strong>". There are a lot of ways to approach this problem.</p>
http://stackoverflow.com/questions/396513/should-parameters-returns-of-collections-be-ienumerablet-or-t/396697#39669712Answer by Orion Edwards for Should parameters/returns of collections be IEnumerable<T> or T[]?Orion Edwards2008-12-28T21:18:36Z2008-12-28T21:18:36Z<p>I went through a phase of passing around <code>T[]</code>, and to cut a long story short, it's a pain in the backside. <code>IEnumerable<T></code> is much better</p>
<blockquote>
<p><em>However I wonder, with the late evaluation of the IEnumerable generic type if that is a good idea. Does it make more sense to use the T[] generic type? IList? Or something else</em></p>
</blockquote>
<p>Late evaluation is precisely why <code>IEnumerable</code> is so good. Here's an example workflow:</p>
<pre><code>IEnumerable<string> files = FindFileNames();
IEnumerable<string> matched = files.Where( f => f.EndsWith(".txt") );
IEnumerable<string> contents = matched.Select( f => File.ReadAllText(f) );
bool foundContents = contents.Any( s => s.Contains("orion") );
</code></pre>
<p>For the impatient, this gets a list of filenames, filters out <code>.txt</code> files, then sets the <code>foundContents</code> to true if any of the text files contain the word <code>orion</code>.</p>
<p>If you write the code using <code>IEnumerable</code> as above, you will only load each file one by one as you need them. Your memory usage will be quite low, and if you match on the first file, you prevent the need to look at any subsequent files. It's great.</p>
<p>If you wrote this exact same code using arrays, you'd end up loading all the file contents up front, and only then (if you have any RAM left) would any of them be scanned. Hopefully this gets the point across about why lazy lists are so good.</p>
<blockquote>
<p><em>One thing that has not gotten addressed though seems to be the issue of thread safety. If, for example, you take an <code>IEnumerable<T></code> argument to a method and it gets enumerated in a different thread, then when that thread attempts to access it the results might be different than those that were meant to be passed in. Worse still, attempting to enumerate an <code>IEnumerable<T></code> twice - I believe throws an exception. Shouldn't we be striving to make our methods thread safe?</em></p>
</blockquote>
<p>Thread safety is a giant red herring here.</p>
<p>If you used an array rather than an enumerable, it <em>looks</em> like it should be safer, but it's not. Most of the time when people return arrays of objects, they create a new array, and then put the old objects in it. If you return that array, then those original objects can then be modified, and you end up with precisely the kind of threading problems you're trying to avoid.</p>
<p>A <em>partial</em> solution is to not return an array of the original objects, but an array of new or cloned objects, so other threads can't access the original ones. This is useful, however there's no reason an <code>IEnumerable</code> solution can't also do this. One is no more threadsafe than the other.</p>
http://stackoverflow.com/questions/396513/should-parameters-returns-of-collections-be-ienumerablet-or-t/396729#3967290Answer by Jan Tolenaar for Should parameters/returns of collections be IEnumerable<T> or T[]?Jan Tolenaar2008-12-28T21:43:01Z2008-12-28T21:43:01Z<p>Implementing a interpreted programming language written in C#, I also needed to choose between the return value of type object[] and List for Linq-like functions as map and filter. In the end I choose the lazy variant of the Lisp-like list. There is a list constructor that has IEnumerable argument: z = new LazyList(...). Whenever the program refers to one of the properties of LazyList (head, tail or isempty), the enumerable is evaluated for just one step (head and isempty become definite, tail becomes another lazy list). The advantage of a lazylist over an IEnumerable is that the former allows recursive algorithms and does not (have to) suffer from multiple evaluations.</p>
http://stackoverflow.com/questions/396513/should-parameters-returns-of-collections-be-ienumerablet-or-t/398295#3982951Answer by David B for Should parameters/returns of collections be IEnumerable<T> or T[]?David B2008-12-29T18:38:27Z2008-12-29T18:38:27Z<blockquote>
<p>However I wonder, with the late evaluation of the IEnumerable generic type if that is a good idea. Does it make more sense to use the T[] generic type? IList? Or something else?</p>
</blockquote>
<p>You need to be careful about the terms you are using. Be aware of the difference between the <em>type of a reference</em> and the <em>type of an instance</em>.</p>
<p>IEnumerable of T only says: "I may iterate over this collection by calling GetEnumerator. When I do that, each element can be refered to as a T." IEnumerable of T does not say anything about lazy evaluation.</p>
<p>Consider these three declarations:</p>
<pre><code>//someInts will be evaluated lazily
IEnumerable<int> someInts = Enumerable.Range(0, 100);
//oddInts will be evaluated lazily
IEnumerable<int> oddInts = someInts.Where(i => i % 2 == 1);
//evenInts will be evaluated eagerly
IEnumerable<int> evenInts = someInts.Except(oddInts).ToList();
</code></pre>
<p>Even though the reference type of all three are IEnumerable of int, only evenInts is eagerly evaluated (because ToList enumerates its target and returns a List instance).</p>
<p>As for the question at hand, what I typically do is to treat my callers as expecting an eagerly evaluated Enumerable, so I do this:</p>
<pre><code>public IEnumerable<int> GetInts()
{
...
return someInts.ToList()
}
</code></pre>
http://stackoverflow.com/questions/396513/should-parameters-returns-of-collections-be-ienumerablet-or-t/599221#5992210Answer by Ben for Should parameters/returns of collections be IEnumerable<T> or T[]?Ben2009-03-01T03:54:56Z2009-03-09T14:27:10Z<p>You can always do this for thread safety ,it will probably perform better in a lot of instances as there is no locking of the collection ( its a copy) . Note this means you do the LINQ or foreach not on the collection but on a member.</p>
<pre><code> public IEnumerable<ISubscription> this[string topic] {
get {
rwlock.EnterReadLock();
try {
return subscriptionsByTopic[GetTopic(topic)].ToArray<ISubscription>();
//thread safe
}
finally {
rwlock.ExitReadLock();
}
}
}
</code></pre>
<p>Also dont use IEnumerable for SOA/multi tier applications as you cant serialize interfaces ( without introducing lots of pain) .WCF works better with List.</p>