Enumerating threads

In .Net we have the Process class which enables us to enumerate all threads that are running within the process, is there anything similar in .NMF?

Is it the case that there is only one thread when our app loads and runs and ALL threads that come into existence will have been created by our code - directly or indirectly?

Thx

I’m not aware of anything. Considering your micro can only run one app, I would think this wouldn’t be very useful.

Correct. By indirectly, I assume you are taking into mind that module drivers may also start up their own threads that you may not have direct visibility into.

No less useful than it is in a desktop app.