Flatten Ruby method in C# - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T12:40:25Zhttp://stackoverflow.com/feeds/question/197081http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/197081/flatten-ruby-method-in-c5Flatten Ruby method in C#chrisntr2008-10-13T09:17:38Z2008-10-14T06:07:28Z
<p>How can I do the Ruby method <a href="http://www.ruby-doc.org/core/classes/Array.html#M002241" rel="nofollow">"Flatten" Ruby Method</a> in C#. This method flattens a jagged array into a single-dimensional array.</p>
<p>For example:</p>
<pre><code>s = [ 1, 2, 3 ] #=> [1, 2, 3]
t = [ 4, 5, 6, [7, 8] ] #=> [4, 5, 6, [7, 8]]
a = [ s, t, 9, 10 ] #=> [[1, 2, 3], [4, 5, 6, [7, 8]], 9, 10]
a.flatten #=> [1, 2, 3, 4, 5, 6, 7, 8, 9, 10
</code></pre>
http://stackoverflow.com/questions/197081/flatten-ruby-method-in-c/197087#19708711Answer by Alexander Kojevnikov for Flatten Ruby method in C#Alexander Kojevnikov2008-10-13T09:24:48Z2008-10-13T21:51:15Z<p>Recursive solution:</p>
<pre><code>IEnumerable Flatten(IEnumerable array)
{
foreach(var item in array)
{
if(item is IEnumerable)
{
foreach(var subitem in Flatten((IEnumerable)item))
{
yield return subitem;
}
}
else
{
yield return item;
}
}
}
</code></pre>
<p>EDIT 1:</p>
<p><a href="http://stackoverflow.com/users/22656/jon-skeet">Jon</a> explains in the comments why it cannot be a generic method, take a look!</p>
<p>EDIT 2:</p>
<p><a href="http://stackoverflow.com/users/615/matt-hamilton">Matt</a> suggested making it an extension method. Here you go, just replace the first line with:</p>
<pre><code>public static IEnumerable Flatten(this IEnumerable array)
</code></pre>
<p>and you can use it like this:</p>
<pre><code>foreach(var item in myArray.Flatten()) { ... }
</code></pre>
http://stackoverflow.com/questions/197081/flatten-ruby-method-in-c/200144#2001441Answer by Matt for Flatten Ruby method in C#Matt2008-10-14T06:07:28Z2008-10-14T06:07:28Z<p>I would have responded in a comment, but I need more than 300 characters.</p>
<p>@Alexander's solution is awesome, but it runs into a problem with arrays of strings. Since string implements IEnumerable, I think it will end up returning each character in every string. You can use a generic parameter to tell it what kind of thing you are hoping to have returned in these cases, e.g.:</p>
<pre><code>public static IEnumerable Flatten<T>(IEnumerable e)
{
if (e == null) yield break;
foreach (var item in e)
{
if (item is T)
yield return (T)item;
else if (item is IEnumerable)
{
foreach (var subitem in Flatten<T>((IEnumerable)item))
yield return subitem;
}
else
yield return item;
}
}
</code></pre>