Retrieving Type information using Reflection
Thursday, July 3rd, 2008There are many situations when we need to retrieve part of the information of a type. It can be done via Reflection. This sample uses it to retrieve type’s attributes, fields, properties, methods and constructors. It also sets values to properties and fields and invoke the two custom methods of the class. Fisrst of all we [...]