When running a simple GUI WPF app, without using async/await at all. I'm not creating any new threads by Task.Run
, but for some reason this is what appreas in the console of Visual Studio:
The thread 0x1058 has exited with code 0 (0x0).
The thread 0x1b0c has exited with code 0 (0x0).
The thread 0x1ae4 has exited with code 0 (0x0).
What are these threads? Who's creating them? If I see that, it means some of the methods I call create new threads, is that right?