Is there any simple way to concatenate two BitArray (C# .NET) ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T01:12:57Z http://stackoverflow.com/feeds/question/518513 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/518513/is-there-any-simple-way-to-concatenate-two-bitarray-c-net 3 Is there any simple way to concatenate two BitArray (C# .NET) ? Jader Dias 2009-02-05T23:45:12Z 2009-03-12T20:27:03Z <p>I have</p> <pre><code>var previous = new BitArray(new bool[]{true}); var current = new BitArray(new bool[]{false}); </code></pre> <p>I want to concatenate them. I have already tried:</p> <pre><code>var next = new BitArray(previous.Count + current.Count); var index = 0; for(;index &lt; previous.Count; index++) next[index] = previous[index]; var j = 0; for(;index &lt; next.Count; index++, j++) next[index] = current[j]; previous = current; </code></pre> <p>But it doesn't look like the best way to do it.</p> http://stackoverflow.com/questions/518513/is-there-any-simple-way-to-concatenate-two-bitarray-c-net/518558#518558 4 Answer by Erik for Is there any simple way to concatenate two BitArray (C# .NET) ? Erik 2009-02-05T23:56:38Z 2009-02-06T00:20:49Z <p>Unfortunately it looks like your method might be as good as it gets - if BitArray implemented IEnumerable&lt;T&gt; (instead of just IEnumerable) then we could use LINQ extension methods to make it a bit prettier.</p> <p>If I were you, I'd wrap this up into an extension method on BitArray:</p> <pre><code>public static BitArray Prepend(this BitArray current, BitArray before) { var bools = new bool[current.Count + before.Count]; before.CopyTo(bools, 0); current.CopyTo(bools, before.Count); return new BitArray(bools); } public static BitArray Append(this BitArray current, BitArray after) { var bools = new bool[current.Count + after.Count]; current.CopyTo(bools, 0); after.CopyTo(bools, current.Count); return new BitArray(bools); } </code></pre> http://stackoverflow.com/questions/518513/is-there-any-simple-way-to-concatenate-two-bitarray-c-net/518559#518559 2 Answer by colithium for Is there any simple way to concatenate two BitArray (C# .NET) ? colithium 2009-02-05T23:56:50Z 2009-02-05T23:56:50Z <p>The framework doesn't provide a nice way of doing this. You could create an array of bools that is large enough to store both BitArrays. Then use BitArray.CopyTo to copy each BitArray in the array of bools (you can specify where to start inserting the elements).</p> <p>After this is done, create another BitArray with the constructor that accepts an array of bools.</p> <p>A lot of work I know, but there doesn't seem to be another way. It's less code than your current method however.</p> http://stackoverflow.com/questions/518513/is-there-any-simple-way-to-concatenate-two-bitarray-c-net/640343#640343 1 Answer by tuinstoel for Is there any simple way to concatenate two BitArray (C# .NET) ? tuinstoel 2009-03-12T20:27:03Z 2009-03-12T20:27:03Z <p>One can do this with LINQ, after <code>Cast&lt;bool&gt;()</code> the bitarray 'becomes' <code>IEnumerable&lt;bool&gt;</code>:</p> <pre><code>var previous = new BitArray(new bool[] { true }); var current = new BitArray(new bool[] { false }); BitArray newBitArray = new BitArray(previous.Cast&lt;bool&gt;().Concat(current.Cast&lt;bool&gt;()).ToArray()); </code></pre> <p>I don't think this LINQ method will be fast. </p>