gpt4 book ai didi

c# - 如何按长度降序对字符串列表的内容进行排序?

转载 作者:行者123 更新时间:2023-12-05 08:50:12 26 4
gpt4 key购买 nike

我想按长度降序对短语的字符串列表进行排序,这样:

Rory Gallagher
Rod D'Ath
Gerry McAvoy
Lou Martin

最终会变成:

Rory Gallagher
Gerry McAvoy
Lou Martin
Rod D'Ath

我想先试试这个:

List<string> slPhrasesFoundInBothDocs;
. . . // populate slPhrasesFoundInBothDocs
slPhrasesFoundInBothDocs = slPhrasesFoundInBothDocs.OrderByDescending(x => x.Length);

...但是最后一行无法编译,intellisense 建议我将其更改为:

slPhrasesFoundInBothDocs = (List<string>)slPhrasesFoundInBothDocs.OrderByDescending(x => x.Length);

...我做到了。它编译,但抛出运行时异常,即“无法将类型为‘System.Linq.OrderedEnumerable2[System.String,System.Int32]’的对象转换为类型‘System.Collections.Generic。列表1[System.String]'."

我需要修复此代码,还是需要以完全不同的方式对其进行攻击?

最佳答案

使用这个:

slPhrasesFoundInBothDocs =
slPhrasesFoundInBothDocs
.OrderByDescending(x => x.Length)
.ToList();

关于c# - 如何按长度降序对字符串列表的内容进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62629436/

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