That example on InfoQ is really old. Check: https://closedxml.codeplex.com/wikipage?title=Using%20Tables&referringTitle=Documentation
foreach (var row in table.DataRange.Rows()) // DataRange skips the headers
{
var name = row.Field("Name").GetString();
}
Hope this helps.