What is reflection?
Answers were Sorted based on User's Feedback
Answer / janani
reflection is a collection of metadata and combination of
manifest.it can also be used to dynamically invoked method.
| Is This Answer Correct ? | 6 Yes | 5 No |
Answer / 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 |
Answer / kirti
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 (see System.Type.InvokeMember ) , or even create types dynamically at run-time (see System.Reflection.Emit.TypeBuilder).
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / agrawars
Reflection is a concept of reverse engineering. The process in order to read and access mechanism of control or assembly is called reflection. It can be performed by using System.reflection namespace in .net
Top two answers can be provide after it.
Thanks.
| Is This Answer Correct ? | 3 Yes | 4 No |
Is .net framework going away?
Do I need microsoft .net framework?
What is objectcontext? : Entity framework
What is the difference between partial and renderpartial?
How Garbage Collector identifies the objects which are not in use?
6 Answers EXL, Honeywell, Microsoft, Tech Mahindra, Tesco,
Difference between <connectionstring> and <appsettings>
Briefly describe the roles of clr in .net framework?
what is namespace?
Which are the important namespaces used in ASP.Net MVC?
What is namespace used for loading assemblies at run time and name the methods?
what are generics? Without generics what are the disadvantages in 1.1?
3 Answers HP, iSoft, nTech Solutions,
What are Validation Annotations?