DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomDataSet Class / DicomDataSet Constructor / DicomDataSet Constructor(DicomDataSet,Boolean)

The Original DicomDataSet object from which the new DicomDataSet is created.

Boolean, indicates weather a Deep/Shallow clone of the Original DicomDataSet will be performed when creating the new DicomDataSet.







In This Topic
    DicomDataSet Constructor(DicomDataSet,Boolean)
    In This Topic
    Creates a new DicomDataSet from an existing DicomDataSet object
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal Original As DicomDataSet, _
       ByVal Deep As System.Boolean _
    )
    'Usage
     
    
    Dim Original As DicomDataSet
    Dim Deep As System.Boolean
     
    Dim instance As New DicomDataSet(Original, Deep)
    public DicomDataSet( 
       DicomDataSet Original,
       System.bool Deep
    )
    public DicomDataSet( 
        Original: DicomDataSet;
        Deep: System.Boolean
    ); 
    public function DicomDataSet( 
       Original : DicomDataSet,
       Deep : System.boolean
    );
    public: DicomDataSet( 
       DicomDataSet* Original,
       System.bool Deep
    )
    public:
    DicomDataSet( 
       DicomDataSet^ Original,
       System.bool Deep
    )

    Parameters

    Original

    The Original DicomDataSet object from which the new DicomDataSet is created.

    Deep

    Boolean, indicates weather a Deep/Shallow clone of the Original DicomDataSet will be performed when creating the new DicomDataSet.

    Return Value

    Remarks
    A direct constructor of DicomDataSet object.
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also