Did anyone add a private DICOM tag to a DICOM file successfully using ClearCanvas library?
The following code snippet is just what I am trying to add a private tag to the DICOM file dataset. But I can not find it when I open the saved DICOM file by MicroDicom viewer.
DicomTag tag = DicomTag.GetPrivateCreatorTag(0X7FE1, 0X0010);
DataSet[tag].SetStringValue("Left");
Does anyone know the reason?