Saved Bookmarks
| 1. |
Why We Need Reflection In C#? |
|
Answer» Reflections needed when we want to determine / inspect contents of an assembly. For example: at Visual Studio editor intelligence, when we type “.” (dot) before any object, it gives us all the MEMBERS of the object. This is possible for Reflection. Beside this we need reflection for the following purposes:
Reflections needed when we want to determine / inspect contents of an assembly. For example: at Visual Studio editor intelligence, when we type “.” (dot) before any object, it gives us all the members of the object. This is possible for Reflection. Beside this we need reflection for the following purposes: |
|