Пример #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));
 }