如何在 C# 中按特定日期对一周中的数组日期进行排序?
在 C# 中按特定日期对数组日期进行排序 我有 3 天时间{周日、周二、周五} 我想用星期一对我的数组进行排序,我的数组变成 { 星期二,星期五,星期日}
sort array days by specific day in c#
I have 3 days {sunday, tuesday, friday}
I want to sort my array with monday and my array become { tuesday, friday , sunday}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解正确的话,您想要将
array
从Monday
到Sunday
顺序排序:您可以在 DayOfWeek 属性,例如
让我们看看:
结果:
If I understand you right, you want to sort
array
fromMonday
toSunday
order:You can do it with a help of DayOfWeek property, e.g.
Let's have a look:
Outcome: