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.
