System.Threading.Thread does not exist?

0

I'm trying to learn how to use multithreading in C #, but all tutorials ask me to use the System.Threading.Thread class, but it seems like in my Visual Studio this class does not exist! A print for you to understand better:

I'm forgetting something? Do I need to do any configuration? I'm a little new to C #, but I used to mend in Threads in java

    
asked by anonymous 09.02.2016 / 13:49

1 answer

1

System.Threading.Thread is defined in mscorlib which is a default DLL for every project in .NET, but from what you said in the comments of the question, you are apparently not working on a project that uses the .NET Framework.

If you are looking to learn about multi-threading using System.Threading.Thread you will need to use another Visual Studio project template, such as console applications, Windows Forms and WPF, for example.

    
09.02.2016 / 15:01