InterviewSolution
Saved Bookmarks
| 1. |
Select the namespace on which the stream classes are defined?(a) System.IO(b) System.Input(c) System.Output(d) All of the mentioned |
|
Answer» The correct answer is (a) System.IO To explain: The core stream classes are defined within the System.IO namespace. To use these classes, you will usually include the following statement near the top of your program: using System.IO; |
|