How can I get the Nth row using Linq? both columns are text so I cant use min/max
var nthItem = items.Skip(n).First();