コード例 #1
0
ファイル: DicomAnonymizer.cs プロジェクト: top501/GoldenEagle
 private static bool IsDateTimeAttributeToAdjust(DicomAttribute attribute)
 {
     return(DateTimeTagsToAdjust.Contains(attribute.Tag.TagValue));
 }
コード例 #2
0
 private static bool IsDateTimeAttributeToAdjust(DicomElement element)
 {
     return(DateTimeTagsToAdjust.Contains(element.Tag.TagValue));
 }