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

.NET 32 bit can maximally allocate 2^31 - 1 (approx.) for any single .NET object.

You would have to go to a 64 bit OS.

Update: In fact, The BitArray class's constructor does not have an overload that takes anything larger than an int. So you would have to split up into ranges.

show/hide this revision's text 1

.NET 32 bit can maximally allocate 2^31 - 1 (approx.) for any single .NET object.

You would have to go to a 64 bit OS.