Welcome to the Gedcom.Net SDK |
The Gedcom.Net SDK is a class library that implements the GEDCOM specification versions 5.5, 5.5.1, 5.5.5 and 7.0
Gedcom.Net SDK is available for .Net Framework 2.0 - 4.8, .Net 5.0 - .Net 8.0, .Net Standard, Core and Universal Windows Platform (UWP).
The easiest way to configure your project is to install the NuGet package. Just type in the PackageManager Console:
PM> install-package gedcom.net.sdk
Reading the GEDCOM (*.ged) file
var transmission = new GedcomTransmission(); using (var parser = new Parser(@"Files\qf646z_4498276j67e01fs8w34661_A.ged")) { parser.Settings.SkipUnknownTag = Patagames.GedcomNetSdk.Enums.SkipUnknownTag.All; transmission.Deserialize(parser); }