I have the code below as an example, but would like to know how i could run the console .exe file indefinitely but run the for loop on five minute increment..
class Program
{
static void Main(string[] args)
{
for (int i = 0; i < 10; i++)
{
Console.WriteLine("hellow world");
}
Console.ReadLine();
}
}