DicomObjects.NET.V8
DicomObjects Namespace / DicomGlobal Class / GuidToUID Method
A System.Guid object to construct the DICOM UID from



In This Topic
    GuidToUID Method
    In This Topic
    Construct a DICOM UID from Universally Unique Identifier (GUID) based on the method defined in ISO/IEC 9834-8 / ITU-T X.667
    Syntax
    'Declaration
     
    Public Shared Function GuidToUID( _
       ByVal guid As Guid _
    ) As String
    'Usage
     
    Dim guid As Guid
    Dim value As String
     
    value = DicomGlobal.GuidToUID(guid)
    public static string GuidToUID( 
       Guid guid
    )
    public:
    static String^ GuidToUID( 
       Guid guid
    ) 

    Parameters

    guid
    A System.Guid object to construct the DICOM UID from

    Return Value

    A DICOM UID based on the Guid object
    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also