Code:
using System;
using System.Collections.Generic;
using System.Text;
namespace CreateFileLoop
{
classProgram
{
staticvoid Main(string[] args)
{
for (int i = 1; i <= 5; i++)
{
Console.WriteLine(i);
}
}
}
}
Output:
But it does it really fast then closes...
Help!
-Storm