❔ Multithreading an async function
I have an async function that I want to multithread with
From my understanding, I need to use the
The method
n number of threads, but I get convert error if I initialize the thread with new Thread(methodName)From my understanding, I need to use the
.Wait() method every time I call the request method, because it has a Task object.The method
request():