C#

C# Reflection Introduction

Reflection in C# is a big topic in itself. I’ll summarize a little list of what you can do with reflection. .NET assembly is a collection of types and its metadata. Metadata describes all the types and its structures like methods, fields, events, and properties. Metadata also defines all the attributes defined …

C# Reflection Introduction Read More
C#

C# Reflection – Type class

A Type class is an important class in C# reflection. Type class represents class types, interface types, array types, value types, enum types, type parameters, generic type definitions, and open/closed generic types. Type class helps you to find properties, methods, events, fields, and constructors declared in a type. It also …

C# Reflection – Type class Read More