Type.GetTypeFromCLSID Method (Guid)
.NET Framework 3.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 Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: