Call LastOrDefault returned from Take : LastOrDefault « 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.Take(0).LastOrDefault();
        Console.WriteLine(name == null ? "NULL" : name);
    }
}








22.52.LastOrDefault
22.52.1.Use LastOrDefault
22.52.2.Call LastOrDefault returned from Take
22.52.3.LastOrDefault returns null when an Element Is Found
22.52.4.LastOrDefault with string operator