Getting Nth value with Linq

后端 未结 1 1385
我在风中等你
我在风中等你 2021-02-11 15:37

How can I get the Nth row using Linq? both columns are text so I cant use min/max

相关标签:
1条回答
  • 2021-02-11 15:54
    var nthItem = items.Skip(n).First();
    
    0 讨论(0)
提交回复
热议问题