Flatten Ruby method in C# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T12:40:25Z http://stackoverflow.com/feeds/question/197081 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/197081/flatten-ruby-method-in-c 5 Flatten Ruby method in C# chrisntr 2008-10-13T09:17:38Z 2008-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 ] #=&gt; [1, 2, 3] t = [ 4, 5, 6, [7, 8] ] #=&gt; [4, 5, 6, [7, 8]] a = [ s, t, 9, 10 ] #=&gt; [[1, 2, 3], [4, 5, 6, [7, 8]], 9, 10] a.flatten #=&gt; [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 </code></pre> http://stackoverflow.com/questions/197081/flatten-ruby-method-in-c/197087#197087 11 Answer by Alexander Kojevnikov for Flatten Ruby method in C# Alexander Kojevnikov 2008-10-13T09:24:48Z 2008-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#200144 1 Answer by Matt for Flatten Ruby method in C# Matt 2008-10-14T06:07:28Z 2008-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&lt;T&gt;(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&lt;T&gt;((IEnumerable)item)) yield return subitem; } else yield return item; } } </code></pre>