gpt4 book ai didi

c# - 使用 Linq 对 List[] c# 进行排序或排序

转载 作者:太空宇宙 更新时间:2023-11-03 18:35:58 24 4
gpt4 key购买 nike

如何对列表< T >[]进行排序?

我有列表 List[] deliverystatus = new List[3];

      deliverystatus[0]---> stores name of file
deliverystatus[1]---> file delivery date
deliverystatus[2]---> where to delivery

我将列表转换为表格并使用邮件发送。我不能更改其他代码有什么方法可以简单地排序

      List<T>.OrderBy(o => o.x).ToList()....ETC

我想根据 deliverystatus[2] 对整个列表进行排序

最佳答案

        var list = new List<string[]>();
list.Add(new string[] { "1", "zzz", "z" });
list.Add(new string[] { "1", "aaa", "x" });
list.Add(new string[] { "1", "b", "y" });
list.Add(new string[] { "1", "c", "3" });

var orderedList = list.OrderBy(e => e[2]);

关于c# - 使用 Linq 对 List<T>[] c# 进行排序或排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15446601/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com