c#方法多次运行

问题描述 投票:0回答:0

我在方法中提出了一些请求。我怎样才能多次运行相同的方法以使其运行得更快?方法中的代码需要完成。让第一种方法同时运行3次。完成后,让第2个方法运行。

static void Main(string[] args)
{
    Codes();
    Console.ReadKey();
}

private static void Codes()
{
    while (true)
    {
        for (int i = 0; i < 3; i++)
        {
            SomeRequests();
        }
        ChangeIP();
    }
}
c# multithreading asynchronous
© www.soinside.com 2019 - 2024. All rights reserved.