How to convert IEnumerable<IEnumerable<T>> to Li

本文关键字:gt to lt IEnumerable Li How convert | 更新日期: 2023-09-27 18:17:13

我真的还不明白T这个东西。我需要将下面的结果转换为列表

private void generateKeywords_Click(object sender, RoutedEventArgs e)
{
   string srText = new TextRange(
     txthtmlsource.Document.ContentStart,
     txthtmlsource.Document.ContentEnd).Text;
   List<string> lstShuffle = srText.Split(' ')
       .Select(p => p.ToString().Trim().Replace("'r'n", ""))
       .ToList<string>();
   lstShuffle = GetPermutations(lstShuffle)
       .Select(pr => pr.ToString())
       .ToList();
}
public static IEnumerable<IEnumerable<T>> GetPermutations<T>(
                                              IEnumerable<T> items)
{
    if (items.Count() > 1)
    {
        return items
          .SelectMany(
             item => GetPermutations(items.Where(i => !i.Equals(item))),
             (item, permutation) => new[] { item }.Concat(permutation));
    }
    else
    {
        return new[] { items };
    }
}

下面这行失败,因为我无法正确转换。我的意思是不是错误而是不是字符串列表

lstShuffle = GetPermutations(lstShuffle).Select(pr => pr.ToString()).ToList();

How to convert IEnumerable<IEnumerable<T>> to Li

对于任何IEnumerable<IEnumerable<T>>,我们可以简单地称之为SelectMany

的例子:

IEnumerable<IEnumerable<String>> lotsOStrings = new List<List<String>>();
IEnumerable<String> flattened = lotsOStrings.SelectMany(s => s);

既然lstShuffle实现了IEnumerable<string>,你可以在心理上将T替换为string:你正在调用IEnumerable<IEnumerable<string>> GetPermutations(IEnumerable<string> items)

正如Alexi所说,SelectMany(x => x)是将IEnumerable<IEnumerable<T>>平铺成IEnumerable<T>的最简单方法。