What is reflection?

Answer Posted / swapna

All .NET compilers produce metadata about the types defined
in the modules they produce. This metadata is packaged
along with the module (modules in turn are packaged
together in assemblies), and can be accessed by a mechanism
called reflection.

The System.Reflection namespace contains classes that can
be used to interrogate the types for a module/assembly.

Using reflection to access .NET metadata is very similar to
using ITypeLib/ITypeInfo to access type library data in
COM, and it is used for similar purposes - e.g. determining
data type sizes for marshaling data across
context/process/machine boundaries.

Reflection can also be used to dynamically invoke methods (
System.Type.InvokeMember ) , or even create types
dynamically at run-timeystem.Reflection.Emit.TypeBuilder).

Is This Answer Correct ?    9 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why we need a separate mobile project template, while we can render our web application in mobile ?

820


What is viewbag?

780


How do you specify comments using razor syntax?

798


Why to use “{resource}.axd/{*pathinfo}” in routing in mvc?

752


How you can implement custom validation in asp.net MVC?

786


What is an asynchronous controller in asp.net mvc?

708


What is filters in web api?

695


Can I set the unlimited length for "maxjsonlength" property in config?

746


How does servicing work for the .net framework 3.0? If I install the .net framework 3.0, can I get service updates for the .net framework 2.0?

726


What is attribute routing in mvc?

786


Explain unit test done by tester on development team?

729


How we can call a JavaScript function on the change of a Dropdown List in ASP.Net MVC?

741


Is it possible to cancel filter execution?

735


differences between poco, model first and data first approach?

823


How we can invoke child actions in ASP.Net MVC?

812