Type.GetTypeFromCLSID Method (Guid)
.NET Framework 2.0
Gets the type associated with the specified class identifier (CLSID).
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
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 ); }
import System.*; class MyGetTypeFromCLSID { public static void main(String[] args) { // Create a GUID object by passing the clsid parameter. Guid myGuid1 = new 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.get_GUID()); // Convert the GUID to a string. Console.WriteLine(myType1.ToString()); } //main } //MyGetTypeFromCLSID
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Show: