adspace


How do you create threading in.net?

Answer Posted / Prashant Malik

To create a new thread in .NET, first create a new instance of the Thread class and pass a delegate to the constructor, representing the method that will be executed in the new thread. Then call Start() on the thread object to begin execution.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write the .net syntax for 'while loop'?

1143