I am trying to figure out what is the purpose of the threads that appear in every new c# application. I created a new console application with empty Main function:
static void Main(string[] args)
{
}
and put a break-point on the end of the function, then I looked on the threads window:
Sometimes it shows 8 threads and sometimes 7 threads.
Can anyone explain what is the purpose of all those threads, and why do I need them for such a simple project?