Sorry, the probelm I have is different. I am new to DICOOM.
I try to get the value from Dicom RT file. For example, I want to get the the value for tag (0001, 0002) which is under (0001,0001) and also tag (0001, 0002) may not be the single one which may like:
(0001,0001){0}(0001,0002){0}
(0001,0001){0}(0001,0002){1}
(0001,0001){0}(0001,0002){2}
If I use var value = dcm.Dataset.Get<string>(new DicomTag(0X0001,0X0002));
or var value = dcm.Dataset.Get<string>(DicomTag.tagname);
It return as null.
How can I get the value by using this or I have to try other way for this structure?