c# – 自定义Linq订购

前端之家收集整理的这篇文章主要介绍了c# – 自定义Linq订购前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有超过一千个文件夹,每个文件夹包含一个或多个具有以下名称文件

无序:

Alison.ext
Heather.ext
Molly.ext
Paula.ext
Sam.ext

排序:

Molly.ext
Sam.ext
Heather.ext
Alison.ext
Paula.ext

我想写一个表达式来排序这个列表,如上所述.

解决方法

//Creating a dictionary with the custom order
var order = "MSHAP";
var orderDict = order.Select((c,i)=>new {Letter=c,Order=i})
                     .ToDictionary(o => o.Letter,o => o.Order);

var list = new List<string>{"A.ext","H.ext","M.ext","P.ext","S.ext"};

//Ordering by the custom criteria
var result = list.OrderBy(item => orderDict[item[0]]);

而不是调用orderDict [item [0]],你可以有一个很好的帮助方法来处理边缘情况(不存在的字母,null等).但那是个主意.

原文链接:https://www.f2er.com/csharp/93900.html

猜你在找的C#相关文章