C# – Reflection

  • Post author:
  • Post category:C#
  • Post comments:1 Comment

C# Reflection objects are used for obtaining type information at runtime. The classes that give access to the metadata of a running program are in the System. Reflection namespace. The System. The reflection namespace contains…

Continue ReadingC# – Reflection

C# – Attributes

  • Post author:
  • Post category:C#
  • Post comments:3 Comments

 C# attributes is a declarative tag that is used to convey information to runtime about the behaviors of various elements like classes, methods, structures, enumerators, assemblies, etc. in your program. You…

Continue ReadingC# – Attributes