| |
| | Type Class (System) |
 | | Type is the root of the System.Reflection functionality and is the primary way to access metadata. |
 | | Use the members of Type to get information about a type declaration, such as the constructors, methods, fields, properties, and events of a class, as well as the module and the assembly in which the class is deployed. |
 | | The MakeArrayType, MakePointerType, and MakeByRefType methods return Type objects that represent, respectively, an array of a specified type, a pointer to a specified type, and the type of a reference parameter (ref in C#, ByRef in Visual Basic). |
| msdn2.microsoft.com /en-us/library/system.type.aspx (1119 words) |
|