Last with string operator : Last « 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 = {"G", "H", "a", "H", "over", "Jack"};

        string name = presidents.Last(p => p.StartsWith("H"));
        Console.WriteLine(name);
    }
}








22.51.Last
22.51.1.Last Prototype
22.51.2.Last with string operator
22.51.3.Get last element