DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomDataSetCollection Class / Remove Method / Remove(String) Method

The InstanceUID of the DicomDataSet to be removed from the DicomDataSetCollection







In This Topic
    Remove(String) Method
    In This Topic
    Removes DicomDataSet from a DicomDataSetCollectionby matching its InstanceUID
    Syntax
    'Declaration
     
    
    Public Overloads Sub Remove( _
       ByVal InstanceUID As System.String _
    ) 
    'Usage
     
    
    Dim instance As DicomDataSetCollection
    Dim InstanceUID As System.String
     
    instance.Remove(InstanceUID)
    public void Remove( 
       System.string InstanceUID
    )
    public procedure Remove( 
        InstanceUID: System.String
    ); 
    public function Remove( 
       InstanceUID : System.String
    );
    public: void Remove( 
       System.string* InstanceUID
    ) 
    public:
    void Remove( 
       System.String^ InstanceUID
    ) 

    Parameters

    InstanceUID

    The InstanceUID of the DicomDataSet to be removed from the DicomDataSetCollection

    Remarks
    The first DicomDataSet objects with the same InstanceUID will be removed from the Collection.
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also