This documentation is archived and is not being maintained.
Type::ReflectedType Property
Visual Studio 2010
Gets the class object that was used to obtain this member.
Assembly: mscorlib (in mscorlib.dll)
For Type objects, the value of this property is always the same as the value of the DeclaringType property.
This example displays the reflected type of a nested class.
using namespace System; using namespace System::Reflection; public ref class MyClassA abstract { public: ref class MyClassB abstract { }; }; int main() { Console::WriteLine( "Reflected type of MyClassB is {0}", MyClassA::MyClassB::typeid->ReflectedType ); //Outputs MyClassA, the enclosing type. }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: