This documentation is archived and is not being maintained.
Type::GetTypeFromCLSID Method (Guid)
Visual Studio 2010
Gets the type associated with the specified class identifier (CLSID).
Assembly: mscorlib (in mscorlib.dll)
Parameters
- clsid
- Type: System::Guid
The CLSID of the type to get.
The following example retrieves a GUID by passing the clsid parameter to the constructor of the Guid structure, and then retrieves the type associated with the specified class identifier (CLSID).
using namespace System; int main() { // Create a GUID object by passing the clsid parameter. Guid myGuid1 = Guid("1AE77DA4-1063-4ab3-BCD2-085B001EFB97"); // Get the type object associated with the CLSID. Type^ myType1 = Type::GetTypeFromCLSID( myGuid1 ); // Display the GUID. Console::WriteLine( myType1->GUID ); // Convert the GUID to a String*. Console::WriteLine( myType1 ); }
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: