Where by Prototype : Prototype « LINQ « C# / CSharp Tutorial






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 & 1) == 1);

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

    }
}








22.58.Prototype
22.58.1.Where by Prototype
22.58.2. First Select Prototype
22.58.3. Select Prototype: string length
22.58.4. Second Select Prototype