I want to fill a list like below :
List<string> list_lines = new List<string>();
for (double num = double.Parse(txtStart.Text); num < 99999999; num++)
{
list_lines.Add(num.ToString());
}
but those codes cause error at 33,554,432
and that error :
Out Of Memory Exception
I want to work with that list, what is the replacement of that or how can i fix that error?
thanks in advance