InterviewSolution
Saved Bookmarks
| 1. |
Choose the namespace which supports multithreading programming?(a) System.net(b) System.Linq(c) System.Threading(d) All of the mentioned |
|
Answer» Correct answer is (c) System.Threading Easy explanation - The classes that support multithreaded programming are defined in the System.Threading namespace. Thus, you will usually include this statement at the start of any multithreaded program. |
|