What is Reflection in .Net?
siva
Hi,
Reflection is the ability to find out the information abount an object at "RUN TIME". The namespace that u use for refelection is:
System.Reflection
Regards,
Anuj rathi
Reflection is the process of walking the metadata about a type and finding out things; for instance, how many constructors a type has, and what the parameters are. It also allows you to dynamically create and invoke types.