So I have everything set up properly, In the console I can write to give me 49000+ numbers but it all saves on 1 line instead of doing multiple, im using this function:
File.AppendAllText("hits.txt", contents);
Console.WriteLine(contents, "hits.txt");
Clearly it only saves to 1 line for some reason, anyone know?
Basically formate is 12digit:8digit
so basically I need it to look like this:
123456789123:12345678
123456789123:12345678
123456789123:12345678
Rn its doing this: 123456789123:12345678123456789123:12345678123456789123:12345678123456789123:12345678123456789123:12345678123456789123:12345678
File.AppendAllText("hits.txt", contents);
Console.WriteLine(contents, "hits.txt");
Clearly it only saves to 1 line for some reason, anyone know?
Basically formate is 12digit:8digit
so basically I need it to look like this:
123456789123:12345678
123456789123:12345678
123456789123:12345678
Rn its doing this: 123456789123:12345678123456789123:12345678123456789123:12345678123456789123:12345678123456789123:12345678123456789123:12345678
I love people :)