SelectMany Prototype : SelectMany : LINQ C# Source Code


Custom Search

C# Source Code » LINQ » SelectMany »

 

SelectMany Prototype








    
 

using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
public class MainClass {
    public static void Main() {
        string[] presidents = {"A", "Art", "Buch", "Bush", "Carter", "land"};

        IEnumerable<char> chars = presidents
         .SelectMany((p, i) => i < 5 ? p.ToArray() : new char[] { });

        foreach (char ch in chars)
            Console.WriteLine(ch);
    }
}

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo LINQ
» SelectMany