Ejemplo n.º 1
0
        public bool TryGetTag(int tag, out IExifTag outTag)
        {
            outTag = null;
            bool exists = false;

            if (exifTags.ContainsKey(tag))
            {
                outTag = exifTags[tag];
                exists = true;
            }

            return(exists);
        }
Ejemplo n.º 2
0
 public void AddExifTag(IExifTag tag)
 {
     exifTags.Add(tag.Tag, tag);
 }