示例#1
0
 private static bool IsAttributeToRemove(DicomAttribute attribute)
 {
     return(IsPrivateAttribute(attribute) || TagsToRemove.Contains(attribute.Tag.TagValue));
 }
示例#2
0
 private static bool IsAttributeToRemove(DicomElement element)
 {
     return(IsPrivateAttribute(element) || TagsToRemove.Contains(element.Tag.TagValue));
 }