Beispiel #1
0
        public void DeleteTag(string tagName)
        {
            GEDCOMTag tag = FindTag(tagName, 0);

            while (tag != null)
            {
                int idx = fTags.IndexOf(tag);
                fTags.DeleteAt(idx);

                tag = FindTag(tagName, idx);
            }
        }
Beispiel #2
0
 public int IndexOf(GEDCOMRecord record)
 {
     return(fRecords.IndexOf(record));
 }