Tagged Questions
1
vote
5answers
1k views
C# Prime Generator, Maxxing out Bit Array
(C#, prime generator)
Heres some code a friend and I were poking around on:
public List<int> GetListToTop(int top)
{
top++;
List<int> result = new List<int>();
...