BoxedType

BoxedType derives from Type. It represents the boxed version of a basic value type such as System::Int32 instead of int32.   The boxed version is basically a class that derives from System::Object; it is useful when a simple type needs to be treated more like a class object. (for example when placed into an array of objects).

The only useful thing to do with a BoxedType is to construct it.   It may be constructed either directly or through an Allocator object.

        BoxedType(BasicType Tp)