InterviewSolution
Saved Bookmarks
| 1. |
Choose the namespace which supports multithreading programming?(a) System.net(b) System.Linq(c) System.Threading(d) All of the mentionedI got this question during an interview.The above asked question is from Multithreaded Programming in chapter Reflections, Multithreaded Programming, Collection Classes and Mathematical Functions of C# |
|
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. |
|