1.

What is Reflection in C#?

Answer»

REFLECTION in C# extracts metadata from the datatypes during RUNTIME

To add reflection in the .NET framework, SIMPLY use System.Refelction namespace in your program to retrieve the TYPE which can be ANYTHING from:

  • Assembly
  • Module
  • Enum
  • MethodInfo
  • ConstructorInfo
  • MemberInfo
  • ParameterInfo
  • Type
  • FieldInfo
  • EventInfo
  • PropertyInfo


Discussion

No Comment Found