I am learning Threading and I am bit confused, what the real difference between the ProcessThread Class and the Thread class, I mean in which scenario to use which one and why ?
Any articles will be helpfull !
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
ProcessThread is rather a Thread Info class on threads of a process. You cannot start, stop or abort it, it just some information on the thread.
Thread class on the other hand is the one that is used (or rather was used before TPL) for multi-threading applications.