InterviewSolution
Saved Bookmarks
| 1. |
Choose the correct statement about System.Type namespace.(a) Core of the reflection subsystem as it encapsulates a type(b) Consists of many methods and properties that can be used to obtain information about a type at runtime(c) Both Core of the reflection subsystem as it encapsulates a type & Consists of many methods and properties that can be used to obtain information about a type at runtime(d) Only Consists of many methods and properties that can be used to obtain information about a type at runtime |
|
Answer» Right answer is (c) Both Core of the reflection subsystem as it encapsulates a type & Consists of many methods and properties that can be used to obtain information about a type at runtime To explain I would say: System.Type is at the core of the reflection subsystem because it encapsulates a type. It contains many properties and methods that you will use to obtain information about a type at runtime. |
|