Exemplo n.º 1
0
 public GedcomLine(int level, string id, string tag, string value, string pointer)
 {
     Level   = level;
     Id      = new GedcomXref(id);
     Tag     = GedcomUtil.GetTag(tag);
     Value   = value;
     Pointer = new GedcomXref(pointer);
 }
Exemplo n.º 2
0
        public GedcomLine(string line)
        {
            var gedcomLine = GedcomUtil.ParseLine(line);

            Level   = gedcomLine.Level;
            Id      = gedcomLine.Id;
            Tag     = gedcomLine.Tag;
            Value   = gedcomLine.Value;
            Pointer = gedcomLine.Pointer;
        }
Exemplo n.º 3
0
 public GedcomXref(string id)
 {
     Id = GedcomUtil.CleanId(id);
 }