Getting Nth value with Linq

后端 未结 1 1390
我在风中等你
我在风中等你 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)
提交回复
热议问题