1
vote
5answers
311 views
Is there a generic (type-safe) BitArray in .NET?
Is there a generic BitArray in .NET? I only found the non-generic one.
Can there be a generic BitArray? (i.e. would it be reasonable?)
Edit:
Maybe I should have said type-safe not generic.
…
2
votes
1answer
81 views
Does enumerating a BitArray cause lots of boxing/unboxing?
System.BitArray only implements the non-generic IEnumerable, which returns an Object for the IEnumerator.Current property. Does running a foreach over a BitArray - eg
foreach (bool b in bitArray)
{
…
3
votes
3answers
487 views
Is there any simple way to concatenate two BitArray (C# .NET) ?
I have
var previous = new BitArray(new bool[]{true});
var current = new BitArray(new bool[]{false});
I want to concatenate them. I have already tried:
var next = new BitArray(previous.Count + …
1
vote
10answers
2k views
Fastest way to calculate primes in C#?
I actually have an answer to my question but it is not parallelized so I am interested in ways to improve the algorithm. Anyway it might be useful as-is for some people.
int Until = 20000000;
…
