我正在使用c#(非Form-app)应用程序,并且我想同时运行多行代码,我该怎么做?
//I want to run this
for (int x = 0; x < 10; x++)
{
Console.WriteLine("HI");
System.Threading.Thread.Sleep(1000);
}
//and at the same time i want to run this too:
System.Threading.Thread.Sleep(11000);
Console.WriteLine("HI2");
我希望在“ HI”的输出完成后的一秒钟内输出“ HI2”,我知道我可以将(11000)更改为(1000),但是我需要另一个项目。