By the way I wouldn't use BitArray. BitArray doesn't give you some ultra-compact space saving. It still stores the bits as ints. I think BitArray is more for heavy duty flag manipulation, and making binary file headers. You seem to just want to convert a number to a base 2 representation, so just use a normal array, or a string.
If you would allow python (as an example for you to follow in C#) then try the following :
# the quotient function. Takes integers n and r
# returns the number of times r goes into n, as an integer
def Q(n,r):
return n / r
# the remainder function. Takes integers n and r
# returns the remainder when n is divided by r, as an integer
def R(n,r):
return n % r
# accepts an integer n, returns its representation in base r (r <= 10), as a string
def radix(n,r):
nf = n
nrep = []
while nf > 0:
nr = R(nf,r)
nf = Q(nf,r)
nrep.append(str(nr))
return ''.join(nrep)
def base2(n):
return radix(n,2)
# accepts a string representation of n, in base r (r <= 10)
# returns the magnitude of n
def deradix(nrep,r):
power = 1
magnitude = 0
for unit in nrep:
term = power*int(unit)
magnitude += term
power *= r
return magnitude
# accepts a string representation of n in base 2, return the magnitude of n
def debase2(nrep):
return deradix(nrep,2)
If you follow this basic format. Function for radix conversion, you can't go wrong.