0 votes
in C Sharp by
What is Reflection?

2 Answers

0 votes
by
Reflection allows us to get metadata and assemblies of an object at runtime.
0 votes
by

Reflection is the process of examining or modifying the runtime behavior of a class at runtime. The java.lang.Class class provides various methods that can be used to get metadata, examine and change the runtime behavior of a class. The java.lang and java.lang.reflect packages provide classes for java reflection. It is used in:

  • IDE (Integrated Development Environment), e.g., Eclipse, MyEclipse, NetBeans.
  • Debugger
  • Test Tools, etc.

Related questions

+1 vote
+1 vote
asked Feb 8, 2020 in JAVA by rahuljain1
0 votes
asked Nov 7, 2019 in Agile by sachatouille
...