show/hide this revision's text 2 added 63 characters in body

BitArray doesn't support Add(), so one-line initialization is a bit ugly:

 BitArray bits     = new BitArray(new bool[]BitArray(new[]{ true, true, true });
BitArray moreBits = new BitArray(new bool[]BitArray(new[]{ true, true, true });

But it's still a bit less error-prone than original example in this case.

Edit: made slightly more elegant per Lucas's comment.

show/hide this revision's text 1

BitArray doesn't support Add(), so one-line initialization is a bit ugly:

 BitArray bits     = new BitArray(new bool[]{ true, true, true });
BitArray moreBits = new BitArray(new bool[]{ true, true, true });

it's still a bit less error-prone in this case.