List<int> pal=new List<int>();
List<int> nums = new List<int>();
var thdigit1 = 1;
var thdigit2 = 999;
while (thdigit2>=1)
{
var holder=thdigit1* thdigit2;
nums.Add(holder);
thdigit2 -= 1;
if (thdigit2==0)
{
thdigit2 = 999;
thdigit1 += 1;
}
}
I am getting a memory overload problem for too much in the list. Is there a certain limit that my computor can handle? Thanks