Answer the question
In order to leave comments, you need to log in
A couple of questions about threads in C#. How to manage them correctly?
Good afternoon. I'm trying to figure out how to properly manage threads in C#.
Specifically interested in the following, how to distribute threads in the program?
For example, I have a conditional function like this:
void TextFunc()
{
Console.Write("Hello, World");
}
void TextFunc1()
{
Console.Write("Hello, User");
}
Thread [] trd = new Thread[2];
trd[0] // тут ссылка на функцию
trd[1] // тут ссылка на функцию
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question