LastOrDefault returns null when an Element Is Found
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.LastOrDefault(); Console.WriteLine(name == null ? "NULL" : name); } }
1. | Use LastOrDefault | ||
2. | Call LastOrDefault returned from Take | ||
3. | LastOrDefault with string operator |