我以下面的代码为例,但想知道如何无限期运行控制台 .exe 文件,但以五分钟为增量运行 for 循环。
class Program
{
static void Main(string[] args)
{
for (int i = 0; i < 10; i++)
{
Console.WriteLine("hellow world");
}
Console.ReadLine();
}
}