InterviewSolution
Saved Bookmarks
| 1. |
Choose the namespace which consists of classes that are part of .NET Reflection API?(a) System.Text(b) System.Name(c) System.Reflection(d) None of the mentioned |
|
Answer» The correct answer is (c) System.Reflection Best explanation: Many of the classes that support reflection are part of the .NET Reflection API, which is in the System.Reflection namespace. eg : using System.Reflection; |
|