使用列表已订购,我想获取下一个/上一个网址
因此,我有一个通过 API 调用(我无法控制)获取的 List 集合。
该列表已排序。
public class Article
{
int articleID;
string Url
}
所以我有一个 Url 值,我想用它来找出下一个和上一个 Url(如果有)。
最优雅的方式是什么?
So I have a List collection that I fetch via a API call (which I don't have any control over).
The list is ordered.
public class Article
{
int articleID;
string Url
}
So I have a Url value, using that I want to figure out the next and previous Url's if any.
What's the most elegant way of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于您的列表属于文章类型...
Since your list is of type Article...
您也可以使用 LINQ 来完成此操作,但有一些难看的跳过和获取:)
You can do this also with LINQ, with some ugly skips and takes :)