Click or drag to resize

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

Compatibility

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).

Getting Started

The easiest way to configure your project is to install the NuGet package. Just type in the PackageManager Console:

PackageManager Console
PM> install-package gedcom.net.sdk

Reading the GEDCOM (*.ged) file

C#
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);
}