DwC-A_dotnet is a simple Darwin Core Archive reader for dotnet.
To add DwC-A_dotnet to your project run the following command in the Visual Studio Package Manager Console
PM> Install-Package DwC-A_dotnet
To read a Darwin Core Archive file and display core data rows.
using DwC_A;
string fileName = "./dwca-uta_herps-v8.1.zip";
using (var archive = new ArchiveReader(fileName))
{
foreach(var row in archive.CoreFile.Rows)
{
//Display field 0 of each row
Console.WriteLine(row[0]);
}
}
More information can be found in the Documentation Wiki.