Categories:
.NET (357)
C (330)
C++ (184)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is Reflection?
What is Reflection?
✍: Guest
It extends the benefits of metadata by allowing developers to inspect and use it at runtime. For example, dynamically determine all the classes contained in a given assembly and invoke their methods. Reflection provides objects that encapsulate assemblies, modules, and types. You can use reflection to dynamically create an instance of a type, bind the type to an existing object, or get the type from an existing object. You can then invoke the type's methods or access its fields and properties. Namespace: System.Reflection
2013-10-29, 2095👍, 0💬
Popular Posts:
What is the FP per day in your current company?
What will be printed as the result of the operation below: main() { int a=0; if (a==0) printf("Cisco...
How to create arrays in JavaScript? We can declare an array like this var scripts = new Array(); We ...
What Articles Have You Read about JUnit? There are a number of JUnit articles that you should read: ...
Can Sub Procedure/Function Be Called Recursively? - Oracle DBA FAQ - Creating Your Own PL/SQL Proced...