C# Linq SelectMany 方法


使用 SelectMany 方法将元素折叠到单个集合(如错误)中。

一个例子是将字符串转换为字符数组。以下是我们的字符串数组。

string[] str = { "Mobile", "Laptop", "Tablet" };

现在,转换为字符数组。

str.SelectMany(item => item.ToCharArray());

示例

 现场演示

using System;
using System.Linq;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      string[] str = { "Mobile", "Laptop", "Tablet" };
      var res = str.SelectMany(item => item.ToCharArray());
      Console.WriteLine("String converted to character array: ");
      foreach (char letter in res) {
         Console.Write(letter);
      }
   }
}

输出

String converted to character array:
MobileLaptopTablet

更新于:2020 年 6 月 23 日

795 次浏览

开启您的 职业生涯

完成课程获得认证

开始
广告