Where by Prototype

image_pdfimage_print
   
 

using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
public class MainClass {
    public static void Main() {
        string[] presidents = {"Ad", "Ar", "Bu", "Bu", "Ca", "Cl"};

        IEnumerable<string> sequence = presidents.Where((p, i) => (i &amp; 1) == 1);

        foreach (string s in sequence)
            Console.WriteLine("{0}", s);

    }
}

    


This entry was posted in LINQ. Bookmark the permalink.