Is there something wrong with BitArrays in C#? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T12:17:50Zhttp://stackoverflow.com/feeds/question/638524http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/638524/is-there-something-wrong-with-bitarrays-in-c3Is there something wrong with BitArrays in C#?Omar Kooheji2009-03-12T13:03:05Z2009-03-12T18:54:37Z
<p>When I conpile this code:</p>
<pre><code>BitArray bits = new BitArray(3);
bits[0] = true;
bits[1] = true;
bits[2] = true;
BitArray moreBits = new BitArray(3);
bits[0] = true;
bits[1] = true;
bits[2] = true;
BitArray xorBits = bits.Xor(moreBits);
foreach (bool bit in xorBits)
{
Console.WriteLine(bit);
}
</code></pre>
<p>I get the following output:</p>
<blockquote>
<blockquote>
<p>True True True</p>
</blockquote>
</blockquote>
<p>When I do an xor on two boolean values by saying true ^ true i get false. </p>
<p>Is there something wrong with the code. My memory of the truth table for XOR was that True XOR True is false.</p>
http://stackoverflow.com/questions/638524/is-there-something-wrong-with-bitarrays-in-c/638539#63853920Answer by Kent Boogaart for Is there something wrong with BitArrays in C#?Kent Boogaart2009-03-12T13:06:04Z2009-03-12T13:06:04Z<p>Copy and paste error.</p>
<pre><code>BitArray moreBits = new BitArray(3);
bits[0] = true;
bits[1] = true;
bits[2] = true;
</code></pre>
<p>That should be:</p>
<pre><code>BitArray moreBits = new BitArray(3);
moreBits[0] = true;
moreBits[1] = true;
moreBits[2] = true;
</code></pre>
<p>HTH,
Kent</p>
http://stackoverflow.com/questions/638524/is-there-something-wrong-with-bitarrays-in-c/638569#6385693Answer by Lucas for Is there something wrong with BitArrays in C#?Lucas2009-03-12T13:13:37Z2009-03-12T15:40:05Z<p>You are setting <code>bits</code> to <code>true</code> twice. You are not settings <code>moreBits</code> to <code>true</code>, so it defaults to all-<code>false</code>. I blame copy/paste!</p>
<p>EDIT: in the short time it took me to write this Kent answered and got upvoted 8 times!</p>
http://stackoverflow.com/questions/638524/is-there-something-wrong-with-bitarrays-in-c/639191#6391911Answer by DK for Is there something wrong with BitArrays in C#?DK2009-03-12T15:31:15Z2009-03-12T18:54:37Z<p>BitArray doesn't support Add(), so one-line initialization is a bit ugly:</p>
<pre><code> BitArray bits = new BitArray(new[]{ true, true, true });
BitArray moreBits = new BitArray(new[]{ true, true, true });
</code></pre>
<p>But it's less error-prone than original example in this case.</p>
<p><strong>Edit:</strong> made slightly more elegant per Lucas's comment.</p>